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

2 ビュー (過去 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 Center および File ExchangeCall Python from MATLAB についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by