Clear Filters
Clear Filters

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

4 views (last 30 days)
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?

Accepted Answer

the cyclist
the cyclist on 16 Feb 2016
Edited: the cyclist on 16 Feb 2016
You can use the transpose function. For example, you could have done
y = flip(AdjClose).'

More Answers (0)

Categories

Find more on Multidimensional Arrays in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!