oregonstate instructurecomcourses 162 takequestions47123669
     oregonstate instructure.com/courses/ 162 take/questions/47123669 You only need to include axes, labels, and titles on plots where explicitly asked. Format output to two decimal piaces. Use fprintf unless otherwise stated. Show partial work. Circle the final answer if it isn\'t clear. You don\'t need to call clear/clc/clf. If you can\'t write the MATLAB code, at least write out the pseudo code. Comments are not required, but you may use them to clarify what you were trying to do. Unless explicitly stated otherwise stated, assume acalculate\" means write a MATLAB program to calculate the answer; do not calculate by hand. output means what shows up in the command window D Question 12 2 pts Plot the following equation for 3 different values of n (2, 6, 7) with t in the range -2 to 4. Plot on three separate subplots/windows. Use a for loop for full credit. y (t) HTML Editorefa ET AT T. Font Sizes Para  
  
  Solution
t=[-2:4];
y1=t*sqrt(2^t);
y2=t*sqrt(6^t);
y3=t*sqrt(7^t);
plot(t,y1);
plot(t,y2);
plot(t,y3);

