I don't know how to add the dots
1 回表示 (過去 30 日間)
古いコメントを表示
Can someone body help me put dots? I have already type the code for the graph, but can't code to put dots in the graph like that
clc, clear;
x = [0 : 0.1 : 12] * pi;
y = sin(x);
z = cos(3 * x);
figure();
plot3(x,y,z, 'color','r');
.![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1173078/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1173078/image.png)
0 件のコメント
採用された回答
KALYAN ACHARJYA
2022 年 10 月 29 日
編集済み: KALYAN ACHARJYA
2022 年 10 月 29 日
x = [0 : 0.1 : 12] * pi;
y = sin(x);
z = cos(3 * x);
figure();
plot3(x,y,z, '--d','color','b','markerfacecolor','y','markersize',4);
#Change color as per requirements
0 件のコメント
その他の回答 (1 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!