Regression with some part of the array
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Nathalie
el 9 de Mayo de 2014
Respondida: Jakob Sørensen
el 9 de Mayo de 2014
Suppose I have x vector=[ 1 5 6 7 8 3 2 ] and corresponding y vector [2 9 4 6 4 5 6].
How to run regression for y on x for x>3.
Thanks.
0 comentarios
Respuesta aceptada
Jakob Sørensen
el 9 de Mayo de 2014
x = [ 1 5 6 7 8 3 2 ];
y = [ 2 9 4 6 4 5 6 ];
idx = find(x > 3); % Returns the indexes where x is larger than 3
plotregression(x(idx), y(idx)); % Only uses the indexes of the vectors, where x were larger than 3
Replace with other regression methods, depending on what you need.
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Linear Regression en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!