Answered
how to plot 40 different colors in matlab graph
Colors in Matlab plot that you are using are basically RGB triplets. For example blue b [0,0,1] black k [0,0,...

5 years ago | 0

Answered
Which filter or function can be used to achieve something like this in MATLAB?
Use roipoly function in Matlab. Read more about it here: https://in.mathworks.com/help/images/ref/roipoly.html

5 years ago | 0

Answered
Legend in plot with a loop
Try this: for j=1:48 figure; normB48points=(normB(:,j)); plot(t',normB48points); xl...

5 years ago | 0

| accepted