plotting functions with many inputs

4 views (last 30 days)
cgo
cgo on 1 Dec 2014
Answered: dpb on 1 Dec 2014
Hi,
A plot can be generated by using plot(x,y). What if I want to have a user-defined number of inputs?
plot(x_1,y_1,x_2,y_2) would be easy to type for 2 inputs. But what if I have 100 inputs? How do I make it efficient?
Thanks

Answers (1)

dpb
dpb on 1 Dec 2014
Use arrays and it's still plot(x,y) -- that's the power of Matlab.

Categories

Find more on 2-D and 3-D Plots in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!