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);