how to solve these simultaneous equations
古いコメントを表示
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 件のコメント
You cannot. Every equation contains 2 distinct unknowns, and therefore your total system has twice as many unknowns as equations. Moreover, the equations are also not "simultaneous" in any meaningful way, since no unknown appears in more than one equation.
YI Hsu Lo
2013 年 2 月 1 日
Matt J
2013 年 2 月 1 日
You should tell us more about the dependence of Y on d.
回答 (0 件)
カテゴリ
ヘルプ センター および File Exchange で Mathematics についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!