how can i insert in plot different values
Show older comments
how can i make a code that repeats the plot command and for each different iteration has different results
fu*nction [Y] = PlotProduct(X,Names)
for N = 1: 5;
figure;
plot(X);
title(Names{N});
xlabel('PRICES');
end
Accepted Answer
More Answers (0)
Categories
Find more on Function Handles in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!