How can I change the color of the plot in each iteration in MATLAB?
问题 The following is a part of my matlab code. As it's shown, I would like to plot 8 curves in one plot. But I want to make each curve with one unique color. I also want to change the legend so that it changes for each i . For instance, for i=1 the legend will be gho-1, for i=2 gho-2 and so on. I want it to be automatic because I will change the i sometimes from ex:(i=1:20). for i=1:8 . . . plot(b,r,'b'); legend(['qho-',num2str(i)]); hold on end How can I do this? Hi again, I have other question: