採用された回答

Amit
Amit 2014 年 1 月 19 日

0 投票

Something like this?
function myProg
myMat = input('Enter 4x4 Matrix\n');
Useropt = input('Row [1] Column [2] Single Element [3]\n');
switch Useropt
case 1
val = input('Which Row\n');
disp(myMat(val,:));
case 2
val = input('Which Column\n');
disp(myMat(:,val));
case 3
val1 = input('Which Row\n');
val2 = input('Which Column\n');
disp(myMat(val1,val2));
otherwise
disp('wrong input');
end
end

その他の回答 (1 件)

Riri
Riri 2014 年 1 月 19 日
編集済み: Riri 2014 年 1 月 19 日

0 投票

Yeah I think it would be something like this. I will try it. Thanks a lot

1 件のコメント

Amit
Amit 2014 年 1 月 19 日
switch is similar to multiple if-elseif-elseif

サインインしてコメントする。

カテゴリ

ヘルプ センター および File ExchangeVehicle Scenarios についてさらに検索

質問済み:

2014 年 1 月 19 日

編集済み:

2014 年 1 月 23 日

Community Treasure Hunt

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

Start Hunting!

Translated by