How to take two inputs simultaneously from the user ?
2 ビュー (過去 30 日間)
古いコメントを表示
[xf1 xf2]=input('Enter range of x :');
0 件のコメント
採用された回答
KSSV
2020 年 3 月 17 日
x=input('Enter range of x :');
xf1 = x(1) ;
xf2 = x(2) ;
Also have a look on deal.
0 件のコメント
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!