how to find multiply variable in matrix multiplication
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Vishal Rajpurohit
el 29 de Mayo de 2018
Comentada: Vishal Rajpurohit
el 29 de Mayo de 2018
function least_square;
x=[1 2 3 4 5];
y=[4;2;5;3;7];
n=numel(x);
for i=1:n
A(i,1)=1;
A(i,2)=x(i);
A(i,3)=x(i).^2;
end
we have matrix A(5x3) and matrix y(5x1) let a matrix a(3x1) satisfy Aa=y so any function or method to find matrix a?
3 comentarios
Stephen23
el 29 de Mayo de 2018
@Vishal Rajpurohit: Note that the output matrix A should be preallocated:
Respuesta aceptada
Más respuestas (0)
Ver también
Categorías
Más información sobre Logical 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!