What is wrong with this?
1 回表示 (過去 30 日間)
古いコメントを表示
Hey I wrote:
X=linspace (0,1,8)
Y=A (13:20,2)
(I had "A" form my last program)
P=polyfit (X,Y,7)
And it says error using polyfit X and Y vectors must be the same size! But they are same sized!!!I don't know what's wrong with it!
0 件のコメント
採用された回答
the cyclist
2016 年 1 月 5 日
They have the same number of elements, but they are not the same shape. You need to transpose one of them.
3 件のコメント
the cyclist
2016 年 1 月 5 日
P=polyfit(X,Y.',7)
FYI, you could have found this by trying
docsearch transpose
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Logical についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!