122k views
2 votes
Write A MATLAB Which Creates A Vector X With Values Ranging From 1 To 100 In Steps Of 5 . And The Program Should Create A Vector Y That Is The Square Root Of Each Value In X And Z Such That Z Is Cos(X). Then The Program Should Plot Y And Z On The Same Plot And On Multiple Plots In The Same Figure Window.

User Jkeary
by
7.9k points

1 Answer

4 votes

Final answer:

To create the required vectors and plot them in MATLAB, use the colon operator, sqrt function, and plot function.

Step-by-step explanation:

To create a vector 'X' with values ranging from 1 to 100 in steps of 5, you can use the colon operator in MATLAB. Here's how you can do it:

X = 1:5:100;

To create a vector 'Y' that is the square root of each value in 'X', you can use the 'sqrt' function. Here's the code:

Y = sqrt(X);

To create a vector 'Z' such that Z is cos(X), you can use the 'cos' function. Here's the code:

Z = cos(X);

Then, to plot 'Y' and 'Z' on the same plot and on multiple plots in the same figure window, you can use the 'plot' function. Here's the code:

figure;
subplot(2,1,1);
plot(X, Y);
subplot(2,1,2);
plot(X, Z);

User Carson Lee
by
7.4k points