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!