Question & Answer: The primary form of data in MATLAB is vectors. They can be one-dimensional (i.e., vectors), or two-dimensional (i.e., matrices)……

1) The primary form of data in MATLAB is vectors. They can be one-dimensional (i.e., vectors), or two-dimensional (i.e., matrices). a) Write the MATLAB code to create a 1x3 vector containing the elements [12,3] Additionally, write the MATLAB code to create a 3x1 vector with the same elements. b) Write the MATLAB code to create the vector [2,4,6,..,98,100] and store it in a variable named x(Hint: There is a shorthand notation for regularly spaced vectors) c) Write the MATLAB code to create a 2x2 matrix containing the elements [1,2,3,4] (The order of the numbers do not matter) 2) MATLAB has several types of built-in math functions that can help you perform common operations. a) Write the MATLAB code that takes the absolute value of -134. b) Write the MATLAB code that stores a number 3*pi in a variable named x, then takes the cosine of x. c) Functions can also be applied to vectors. Assume you have a vector y, which contains the elements [4,9,16]. Write the MATLAB code to take the square root of y. What should the result be?

The primary form of data in MATLAB is vectors. They can be one-dimensional (i.e., vectors), or two-dimensional (i.e., matrices). a) Write the MATLAB code to create a 1 times 3 vector containing the elements [1, 2, 3]. Additionally, write the MATLAB code to create a 3 times 1 vector with the same elements. b) Write the MATLAB code to create the vector [2, 4, 6, .., 98, 100] and store it in a variable named x. c) Write the MATLAB code to create a 2 times 2 matrix containing the elements [1, 2, 3, 4] (The order of the numbers do not matter). MATLAB has several types of built-in math functions that can help you perform common operations. a) Write the MATLAB code that takes the absolute value of -134. b) Write the MATLAB code that stores a number 3*pi in a variable named x, then takes the cosine of x. c) Functions can also be applied to vectors. Assume you have a vector y, which contains the elements [4, 9, 16]. Write the MATLAB code to take the squareroot of y. What should the result be?

Expert Answer

 

onebythree=[1 2 3] %1(a)

threebyone=[1;2;3] %1(b)

x=2:2:100 %1(c)

mat=[1 2; 3 4] %1(d)

absolute=abs(-134) %2(a)

x=3*pi
cosineofx=cos(x) %2(b)

y=[4 9 16]
answer=sqrt(y) %2(c)

Still stressed from student homework?
Get quality assistance from academic writers!