how do i put different symbols for 1 matrix in plotting?

조회 수: 3 (최근 30일)
Matthieu Clarence
Matthieu Clarence 2022년 8월 5일
댓글: Rena Berman 2022년 8월 23일
plot(av,'rd'); in this av is the matrix and rd is red and diamond, but how do i put different symbols and color for different row of matrix
  댓글 수: 2
John D'Errico
John D'Errico 2022년 8월 5일
편집: John D'Errico 2022년 8월 5일
When you delete your question, you insult the person who bothered to spend their time in answering it, as now the answer is out of context and meaningless. You hurt the site, because now this same person has less incentive to answer questions, and certainly less incentive to anser YOUR questions. You make it impossible for anyone else to learn from the answer.
Rena Berman
Rena Berman 2022년 8월 23일
(Answers Dev) Restored edit

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

답변 (1개)

Kevin Holly
Kevin Holly 2022년 8월 5일
av = rand(4,15);
plot(1:size(av,2),av(1,:),'rd',1:size(av,2),av(2,:),'cs-',1:size(av,2),av(3,:),'*b:',1:size(av,2),av(4,:),'hg--');

카테고리

Help CenterFile Exchange에서 Call Python from MATLAB에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by