I have some code
function runTubulin()
n = 10;
for j = 1:n
TubulinModel();
end
plot(TubulinModel(), n);
So my problem is that TubulinModel has a random number of outputs So I keep getting
??? Error using ==> TubulinModel Too many output arguments.
Error in ==> runTubulin at 11 plot(TubulinModel(), n);
Is there A way to plot the data when I do not know the size of the array?