The graph wont be appear
古いコメントを表示
I keep getting this error
Error using *
Incorrect dimensions for matrix multiplication. Check that the number of columns in the first matrix matches the
number of rows in the second matrix. To perform elementwise multiplication, use '.*'.
Error in un (line 3)
y= t.^2 * cos(t);
回答 (1 件)
Rik
2022 年 1 月 21 日
Do what the error message tells you to do:
y= t.^2 .* cos(t);
カテゴリ
ヘルプ センター および File Exchange で Directed Graphs についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!