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

9 visualizaciones (últimos 30 días)
Jovos
Jovos el 15 de Feb. de 2016
Editada: Jovos el 16 de Feb. de 2016
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?

Respuesta aceptada

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

Más respuestas (0)

Categorías

Más información sobre Statistics and Machine Learning Toolbox en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by