I have the answers in the book but I need it in other words. ASAP Please. What i
ID: 669657 • Letter: I
Question
I have the answers in the book but I need it in other words. ASAP Please.
What is the purpose of the Matlab Command Window? The Edit Window? The Figure Window? List the different ways that you get help in MATLAB. What is a workspace? How can you determine what is stored in a MATLAB workspace? A. How can you clear the contents of a workspace? The distance traveled by a bail falling in the air is given by the equation x = x0 + v0t + 1/2at2 Use Matlab to calculate the position of the bail at time t = 5 s if x0 = 10 m, v0 = 15 m/s, and a = -9.81 m/sec2. Suppose that x = 3 and y = 4. Use Matlab to evaluate the following expression:Explanation / Answer
Command window
three commonly used panels: command window, current folder, and command history
A figure window contains graphs created by putting commands in the command window. This graph is generated by the following command:
>> t=linspace(0,10,500);
>> y = exp(-t).*sin(10*t);
>> plot(t,y).
Working in the command window
After creating a plot, you can make changes to it and annotate it with the Plot Editor, which is an easy-to-use graphical interface. The illustration below shows the plot in a figure