Write a script file that will use subplot(p, q) with appropriate entries for p,
ID: 3764070 • Letter: W
Question
Write a script file that will use subplot(p, q) with appropriate entries for p, q and r to display graphically the time vs position and time vs, velocity of the outputs in a single graph page. The graphics page should display output corresponding to (i) in two separate graphs on the 1" row and the outputs corresponding (ii) in two separate graphs in the second row. Use 'title' and 'label' commands in your script to identify the graphs properly. (The layout should be as below,... axis and other details will be based on your script).Explanation / Answer
>> p=[0:1:50]
>> q=[0:2:50]
>. r= [0:3:50]
>> subplot 3 3 1(p,q)
>> xlabe (' p value')
>> subplot 3 3 2(q,r)
>> xlabel(' q value')
>> subplot 3 3 3 (p,r)
>> xlabel ( 'q value')