Take input in Matlab App Designer

25 visualizaciones (últimos 30 días)
Tejas Mahajan
Tejas Mahajan el 10 de Oct. de 2020
Comentada: Ameer Hamza el 12 de Oct. de 2020
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.

Respuestas (1)

Ameer Hamza
Ameer Hamza el 10 de Oct. de 2020
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 comentarios
Tejas Mahajan
Tejas Mahajan el 12 de Oct. de 2020
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 el 12 de Oct. de 2020
str2num is able to handle this case too
A = '[1,-3,-5,7]';
B = str2num(A);
Result
>> B
B =
1 -3 -5 7

Iniciar sesión para comentar.

Categorías

Más información sobre Develop Apps Using App Designer en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by