I don't know how to add the dots

1 Ansicht (letzte 30 Tage)
Ye
Ye am 29 Okt. 2022
Beantwortet: CHIRANJIT DAS am 29 Okt. 2022
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');
.

Akzeptierte Antwort

KALYAN ACHARJYA
KALYAN ACHARJYA am 29 Okt. 2022
Bearbeitet: KALYAN ACHARJYA am 29 Okt. 2022
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

Weitere Antworten (1)

CHIRANJIT DAS
CHIRANJIT DAS am 29 Okt. 2022
@Ye Try playing with markers..Like this
plot3(x,y,z,'-s','MarkerSize',10,...
'MarkerEdgeColor',[1 .6 .6],...
'MarkerFaceColor','g')
More customization options can be explored here.
Cheers

Kategorien

Mehr zu Environment and Settings finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by