Delme
Followers: 0 Following: 0
Feeds
已解决
Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...
4 years 前
提问
Integration of acceleration signal for complex modulus calculation
Hi everyone, i need some advice to determine the complex modulus (storage modulus and loss modulus) of a viscoelastic dampening...
4 years 前 | 1 个回答 | 0
1
个回答已解决
Get the length of a given vector
Given a vector x, the output y should equal the length of x.
4 years 前
已解决
Select every other element of a vector
Write a function which returns every other element of the vector passed in. That is, it returns the all odd-numbered elements, s...
4 years 前
已解决
Pizza!
Given a circular pizza with radius _z_ and thickness _a_, return the pizza's volume. [ _z_ is first input argument.] Non-scor...
4 years 前
已解决
Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...
4 years 前
已解决
Find the Oldest Person in a Room
Given two input vectors: * |name| - user last names * |age| - corresponding age of the person Return the name of the ol...
4 years 前
已解决
Convert from Fahrenheit to Celsius
Given an input vector |F| containing temperature values in Fahrenheit, return an output vector |C| that contains the values in C...
4 years 前
已解决
Calculate Amount of Cake Frosting
Given two input variables |r| and |h|, which stand for the radius and height of a cake, calculate the surface area of the cake y...
4 years 前
已解决
Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...
4 years 前
已回答
What this programe do
You can run this example and have a look. X= [-3 2 1 4 3 2 ]; [n,m]=size(X); for i=1:n for j=1:m if X(i,j)...
What this programe do
You can run this example and have a look. X= [-3 2 1 4 3 2 ]; [n,m]=size(X); for i=1:n for j=1:m if X(i,j)...
4 years 前 | 0