How to plot the same function several times with several different angles

2 views (last 30 days)
Suppose I had the equation of y=sin(x), and I wanted to plot the function of this equation several times with angles ranging from [32.1, 46, 81]. How could I input these values into the function in order to graph all these values?
clear all
x1=[32.1, 46, 81]
x= 0:pi:x1
y=sin(x)
plot(x,y)
I thought it'd be this code, but clearly I was wrong. Thanks for any help you guys can provide.

Answers (1)

Azzi Abdelmalek
Azzi Abdelmalek on 21 Apr 2013
x1=[32.1, 46, 81]
x= 0:0.001:0.2
y=sin(bsxfun(@times,x',x1))
plot(x,y)

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!