u= 1:10; %%Define a vector u with elements 1,2,3,4,5,6,7,8,9,10% v= u.^2; %%Define a vector v with elements that are the square of vector u%% A= [u;v]; %%Put vectors into 2x10 matrix%% plot(u,v,'--o') %%plot function plots v versus u%% filename= 'DismukePartOneWkst_6.csv'; csvwrite(filename,A) %%have to use csvwrite b/c mac computers can't recognize/execute xkswrite command%%