Take input in Matlab App Designer

조회 수: 3 (최근 30일)
Tejas Mahajan
Tejas Mahajan 2020년 10월 10일
댓글: Ameer Hamza 2020년 10월 12일
I want user to give input in commas i.e -> 2,-6,-3,10,6,-6,10 and then work on it.So please help me with this.Im using Matlab App Designer Online.

답변 (1개)

Ameer Hamza
Ameer Hamza 2020년 10월 10일
You can use uieditfield(): https://www.mathworks.com/help/matlab/ref/uieditfield.html in the app designer. Use the text version of UIEditfield to get the input in a vector format.
  댓글 수: 6
Tejas Mahajan
Tejas Mahajan 2020년 10월 12일
But sir it dossent take multiple negative values, i want user to give input as [1,-3,-5,7] and below that the output must be printed as 1 -3 -5 7 . I hope you getting my problem.
Ameer Hamza
Ameer Hamza 2020년 10월 12일
str2num is able to handle this case too
A = '[1,-3,-5,7]';
B = str2num(A);
Result
>> B
B =
1 -3 -5 7

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Data Type Identification에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by