Plotting decimals in matlab?

2 ビュー (過去 30 日間)
Jim Case
Jim Case 2015 年 8 月 21 日
回答済み: Tamfor Dulin 2015 年 8 月 21 日
I am practicing matlab and this is a simple code:
x = 0:20:120; y = [2.5:3.8:4.5:4.8:4.9:5.0:5.0]; plot(x,y)
I am getting a parse error incorrect usage at y, why?

回答 (1 件)

Tamfor Dulin
Tamfor Dulin 2015 年 8 月 21 日
Use comma (,) instead of colons (:)
like so
x = 0:20:120; y = [2.5,3.8,4.5,4.8,4.9,5.0,5.0]; plot(x,y)

カテゴリ

Help Center および File ExchangeAnnotations についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by