开发者_开发技巧I want to plot several graphs in Matlab so that they will appear next to one another inside the same window (is "figure" the correct term?). How do it achieve that?
subplot()
is the command you are looking for. Look up here for more details.
You can use the subplot()
command.
The subplot command will allow you to split your figure in multiple subfigures. See the subplot help for usage info.
Regards
精彩评论