plot作图问题。
6 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
果博东方开户账号【微8785092】
am 23 Mai 2023
Beantwortet: 果博东方游戏网址【微8785092】
am 23 Mai 2023
n=8;k1=200;k2=500;
for i=1:n
plot([cos((i-1)*pi/n),-cos((i-1)*pi/n)],...
[sin((i-1)*pi/n),-sin((i-1)*pi/n)],'k-','LineWidth','2');
end
这种语法提示,plot不是数值标量,请问该怎么解决?
0 Kommentare
Akzeptierte Antwort
果博东方游戏网址【微8785092】
am 23 Mai 2023
因为LineWidth参数值为数字2,不是字符2
plot([cos((i-1)*pi/n),-cos((i-1)*pi/n)],...
[sin((i-1)*pi/n),-sin((i-1)*pi/n)],'k-','LineWidth',2);
0 Kommentare
Weitere Antworten (0)
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!