I don't know how to add the dots

조회 수: 1 (최근 30일)
Ye
Ye 2022년 10월 29일
답변: CHIRANJIT DAS 2022년 10월 29일
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');
.

채택된 답변

KALYAN ACHARJYA
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

추가 답변 (1개)

CHIRANJIT DAS
CHIRANJIT DAS 2022년 10월 29일
@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

카테고리

Help CenterFile Exchange에서 Environment and Settings에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by