Hello, how can I insert string into plot properties? For example I have cell u=[{'k*'}, {'k-'}] and I want plot(x, y, u(1)) but this shows 'Invalid first data argument'. Any solutions? Thank you very much.

1 件のコメント

Rik
Rik 2018 年 3 月 17 日
Actually, it looks like the x is the first problem you're having. The second problem is that you're using matrix indexing to get a cell in your plot. You should use plot(x, y, u{1})

サインインしてコメントする。

 採用された回答

Rene Riha
Rene Riha 2018 年 3 月 17 日

0 投票

Thank you, solution was type u={'ko', 'k-'}. Then it works.

1 件のコメント

Rik
Rik 2018 年 3 月 17 日
You are aware that both syntaxes result in the same shape of the same data type?

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

タグ

質問済み:

2018 年 3 月 17 日

コメント済み:

Rik
2018 年 3 月 17 日

Community Treasure Hunt

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

Start Hunting!

Translated by