how to solve these simultaneous equations
2 views (last 30 days)
Show older comments
hi there!
i have a simple question about solving equations
i have matrix "Y" and "d" which contain unknowns
size(Y)=size(d)=[ 2 , 1 , 30 ];
and i have a matrix "X" which contains knowns size(X)=[ 2 , 1 , 30 ];
and i would like to solve the equations as below
for k = 1 : 30 ;
d(:,:,k)/2+Y(:,:,k)=X(:,:,k);
end;
how can i solve these simultaneous equations???
thank you!
3 Comments
Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!