Mathematical functions across variables
3 ビュー (過去 30 日間)
古いコメントを表示
I have two variables saved in the workspace, A and B. Say A is 3x3 and B is 2x2. This seems so simple, but how would I add A(1,1) to B(2,1)? I can't seem to get anything to work. Thanks.
1 件のコメント
Stephen23
2023 年 9 月 19 日
"This seems so simple, but how would I add A(1,1) to B(2,1)? I can't seem to get anything to work"
回答 (2 件)
John D'Errico
2023 年 9 月 18 日
編集済み: John D'Errico
2023 年 9 月 18 日
Is there a good reason why you would not just try this?
A(1,1) + B(2,1)
I think you are coming from a spreadsheet world. And for some reason you think MATLAB needs to operate just like a spreadsheet. Honestly, I don't know what it is you would have tried to do that operation. But I will guess you were trying to click on those elements somehow, and get an addition.
0 件のコメント
the cyclist
2023 年 9 月 18 日
編集済み: the cyclist
2023 年 9 月 18 日
If you just want to know their sum
A(1,1) + B(2,1)
If you want to add A(1,1) to the value stored in B(2,1)
B(2,1) = A(1,1) + B(2,1)
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Startup and Shutdown についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!