error using Polyfit, X and Y vectors must be the same size

9 ビュー (過去 30 日間)
Jovos
Jovos 2016 年 2 月 15 日
編集済み: Jovos 2016 年 2 月 16 日
plot(flip(AdjClose))
y = flip(AdjClose)
x = 1:503;
polyfit(y,x,0)
x is a 503*1 double and y is a 1*503 double. I wonder how can I make them the same size?

採用された回答

the cyclist
the cyclist 2016 年 2 月 16 日
編集済み: the cyclist 2016 年 2 月 16 日
You can use the transpose function. For example, you could have done
y = flip(AdjClose).'
  1 件のコメント
Jovos
Jovos 2016 年 2 月 16 日
編集済み: Jovos 2016 年 2 月 16 日
Thank you.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeStatistics and Machine Learning Toolbox についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by