DSPdude
Electrical
- Jul 24, 2003
- 4
How do I use the Plot function to plot in the graph control of my choosing? I can't seem to find it in the help. Thanks.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
first_axes = suplot(211);
...
second_axes = subplot(212);
...
axes(first_axes)
plot(something)
figure(figure_number)
plot(something)