least square method.getting error using '\' or linsolve. pls help
Mostrar comentarios más antiguos
any kind folks who can help me out. i'm trying to implement least square method, but i'm getting some error using linsolve and '\' function. please help, and million thanks in advance!
for a =1:400
for P=1:49
o=(P-1)*243;
for r=1:35
if r==35
t=-2;
pA1(1:5,1,r,P)=A(7*r-6+o:7*r+t+o,a);
pB1(1:5,1,r,P)=B(7*r-6+o:7*r+t+o,a);
beta(r,P)=linsolve(pA1,pB1); <--- error
% beta(r,P)=pA1\pB1;
else
t=0;
pA(1:7+t,1,r,P)=A(7*r-6+o:7*r+t+o,a);
pB(1:7+t,1,r,P)=B(7*r-6+o:7*r+t+o,a);
beta(r,P)=linsolve(pA,pB);; <---- error
% beta(r,P)=pA\pB;
end
end
end
Respuestas (1)
Your pA1 and pB1 are 4D arrays. However linsolve(A,B) expects A and B to be 2D matrices, and similarly for '\'.
4 comentarios
No, the intention of your code is not obvious. Don't you know what equations you want linsolve to solve? If it's now clear from my Answer that the data you're giving it is wrong, doesn't that tip you off as to what it should really be?
seprienna
el 23 de En. de 2015
Matt J
el 23 de En. de 2015
Nope, no tips. We have no way of understanding what your code is trying to do unless you explain it to us.
Categorías
Más información sobre Calendar en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!