why can't i draw diagram of function abs(sin3x/sin(x/2)) in matlab?
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Le Dung
am 13 Apr. 2017
Kommentiert: Star Strider
am 9 Mai 2017
my code:
x=-pi:0.1:pi;
y=abs(sin(3*x)/sin(x/2));
plot(x,y);
0 Kommentare
Akzeptierte Antwort
Star Strider
am 13 Apr. 2017
Because you are not using element-wise division (with the ‘dot’ operator, as ‘./’).
This works:
x=-pi:0.1:pi;
y=abs(sin(3*x)./sin(x/2));
plot(x,y);
7 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Logical finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!