What is wrong with this?

3 次查看(过去 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!

采纳的回答

the cyclist
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
the cyclist 2016-1-5
P=polyfit(X,Y.',7)
FYI, you could have found this by trying
docsearch transpose
which will turn up (among other things) this documentation page.
mar vouz
mar vouz 2016-1-5
Thank you very much for your help!!

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Text Data Preparation 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by