In Matlab I have a function calling a set of parameters. I have 3 sets, and I can call them individually and plot them.. No problems there. But I want to be able to compare them in one single plot. Meaning: is there a way, that I have get all three plots into a single plot?
function [GE,SI,RES,T] = glusim(parameter,Data) [...] If I call glusim(1,Data) I use a set of parameters, and gets a plot. If I call glusim(2,Data) I use another set of parameters and get a plot. If I call glusim(3,Data) I use a third set of parameters and get a plot. I want to compare all 3 in one plot.
How do I do that?