plot for different values
Ältere Kommentare anzeigen
Dear all
I would like to plot X and y axes values for different values of p
P=X. /y
x=4:4:20
y=2:4:20
I want plots for different values of p
p=0.3
P=0.4
P=0.8
Kindly guide me
Thanking in advance
Lincy
1 Kommentar
Azzi Abdelmalek
am 30 Jun. 2015
plot what?
Antworten (1)
Mischa Kim
am 30 Jun. 2015
Lincy, you mean probably something like
x = 4:4:20;
p = [0.3; 0.4; 0.8];
y = bsxfun(@rdivide, x, p);
plot(x,y)
Given x and p compute y.
Kategorien
Mehr zu Annotations finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!