plotting coordinates and fitting

1 回表示 (過去 30 日間)
Ede gerlderlands
Ede gerlderlands 2012 年 11 月 5 日
I have 3 coordinates which are (12,0.6},(50,0.8) and (145,0.4) and i have x values that range from 1 to 500 and I want to fit y values linearly for each of x's (1:500) based on the three y values I have. Any help in this regard is highly appreciated.

採用された回答

Matt J
Matt J 2012 年 11 月 5 日
編集済み: Matt J 2012 年 11 月 5 日
p=polyfit([12 50 145],[.6 .8 .4],1);
y=polyval(p,1:500);
  1 件のコメント
Ede gerlderlands
Ede gerlderlands 2012 年 11 月 5 日
Thanks for your help...

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeExploration and Visualization についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by