필터 지우기
필터 지우기

How to draw the figure dot like this. ( I have a example figure.)

조회 수: 1 (최근 30일)
Steven KIM
Steven KIM 2022년 6월 15일
댓글: Steven KIM 2022년 6월 15일
30= 0.0694914000000000
45= 0.135992000000000
60= 0.398871000000000
  댓글 수: 2
KSSV
KSSV 2022년 6월 15일
You can achieve this using simple plot right?
Steven KIM
Steven KIM 2022년 6월 15일
I am learning the necessary parts by self-taught little by little :)

댓글을 달려면 로그인하십시오.

채택된 답변

Star Strider
Star Strider 2022년 6월 15일
Try this —
A = [30 45 60; 0.069491 0.135992 0.398871; 0.069491 0.135992 0.398871]+[0; 0; 0.3];
figure
plot(A(1,:), A(2:3,:), '.-', 'MarkerSize',15)
xlabel('Inclined angle (degree)')
ylabel('Heave max (m)')
axis padded
.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Interactive Control and Callbacks에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by