Effacer les filtres
Effacer les filtres

Kindly guide how to add the single edit field for each RLC like [0.01, ...] and different time interval [10, 20, 30] in app designer and also the phase result on interfaces

77 vues (au cours des 30 derniers jours)
Ehtisham
Ehtisham le 7 Août 2024 à 6:38
Commenté : Ehtisham le 8 Août 2024 à 11:18
Kindly guide how to add the single edit field for each RLC like [0.01, ...] and different time interval [10, 20, 30] in app designer

Réponses (1)

Divyajyoti Nayak
Divyajyoti Nayak le 7 Août 2024 à 8:36
Hi @Ehtisham, from what I understand you want to get a numerical vector from an edit field when you enter a string like “[10,20,30]” into the edit field. You can make use of the ‘erase’ and ‘split’ functions to filter out the required numeric strings and then use the ‘str2double’ function to convert it into a numeric vector. Here’s a link to a similar MATLAB Answer:
Here’s the code that you can put in your button callback function:
RLC = app.RLCtoEC50EditField.Value;
RLC = erase(RLC,{'[',']'});
RLC = split(RLC,','); %Separate the elements by comma ','
%Do not use both space and comma to separate elements during input.
%If separating by space use below command instead
%RLC = split(RLC,' ');
RLC = str2double(RLC); %Convert string vector to double vector
%Similarly, do it for time intervals
Hope that helps!
  7 commentaires
Divyajyoti Nayak
Divyajyoti Nayak le 8 Août 2024 à 9:31
@Ehtisham thats because the new edit field's name is not 'RLCtoEC50EditField'. You have changed it to 'RLCValuesEditField'
Ehtisham
Ehtisham le 8 Août 2024 à 11:18
@Divyajyoti Nayak can you fix this problem and share a file with me. It will be very help ful for me

Connectez-vous pour commenter.

Produits


Version

R2023a

Community Treasure Hunt

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

Start Hunting!

Translated by