フィルターのクリア

Can you add a prompt that asks how many unknowns are in the simultaneous equations and selects a section from the code to answer the specific problem?

1 回表示 (過去 30 日間)
I got an idea for an assignment. Involving the use of matlab to find unknown values x and y, basic simultaneous equation. But also with in that same program i want add the option to find x,y and z and have the option to select if i just want to find x,y (a normal simultaneous equation problem) or x,y and z (a more complex simultaneous equation problem). Can that be done? And what code would i have to use to select which section to run and which one to not run?

採用された回答

Scott MacKenzie
Scott MacKenzie 2021 年 5 月 4 日
Your question suggests an arrangement something like this:
n = input('Enter number of unknowns: ');
switch n
case 1
disp('One');
% put code here for 1 unknown
case 2
disp('Two');
% put code here for 2 unknown
case 3
disp('Three');
% put code here for 3 unknown
end
disp('Bye');

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLogical についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by