Тёмный
No video :(

How to design Radio button, check boxes and drop down menu in MATLAB App Designer? 

Programmer World
Подписаться 13 тыс.
Просмотров 27 тыс.
50% 1

This video shows the steps to design the Radio Buttons, Check Box, and drop down menu, buttons, panels and other widgets usage in App Designer in MATLAB R2018a.
In this video using the above mentioned widgets a simple Calculator GUI is designed which can be toggled/ switched between Addition-Subtraction or Multiplication-Subtraction option.
The output is displayed either in String format or Numeric format based on the drop-down menu option selection by the user.
Complete source code is available at:
programmerworl...
We will be glad to hear from you regarding any query, suggestions or appreciations at: programmerworld1990@gmail.com

Опубликовано:

 

28 авг 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 17   
@SARAHatesislam
@SARAHatesislam 3 года назад
You are fabulous, thanks a lot for the video. it solved many of my problems in my code
@dylanreen1629
@dylanreen1629 5 лет назад
best video on matlab app builder yet. can you do one wit the toggle button?
@ProgrammerWorld
@ProgrammerWorld 5 лет назад
Thanks for your comments. For toggle button usage you can refer to my below video : ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-CUvby20tExk.html I hope it is helpful.
@XXxxGOOOFYxxXX
@XXxxGOOOFYxxXX 3 года назад
This is so helpful, thank you so much.
@adarshmishra6379
@adarshmishra6379 6 лет назад
loved this one too, thanks for this video!
@nunvolk3456
@nunvolk3456 5 лет назад
Thanks for video!
@medw771
@medw771 5 лет назад
Very helpful, thanks.
@tkvthesauceboy
@tkvthesauceboy Год назад
Hello Everyone, I’m working on app designer and I wish to create an app to do some calculus but the problem I have it that some variables like “Nt” or “Nv” are been unused and this doesn’t permit the calculation, what can I do to overcome this please 🙏🏾🙏🏾
@ProgrammerWorld
@ProgrammerWorld Год назад
Unused variables in a function should not cause any issue or error. At best it will throw some warning messages. Anyway, you can also avoid initializing these variables (Nt, Nv). If these variables are defined as output of some other computation/ function then simply put tilde (~) symbol instead of variable name. This way you can avoid initializing these variables. Say in below example: >> a=2; >> b=3; Instead of : >> Nt = a+b Nt = 5 Use: >> [~] = a+b Hope the above helps. For reference, details shown in this video is also shared in the below link: programmerworld.co/matlab/how-to-design-radio-button-check-boxes-and-drop-down-menu-in-matlab-app-designer/ Cheers Programmer World programmerworld.co -
@Gombakka
@Gombakka 5 лет назад
Thank you for the video. Is there a way we can add a common text feild in several tabs?For example I have 3 tabs and 3 text feilds to give output in my design but I want to insert a common output message feild in all the 3 tabs. How can I link them?
@ProgrammerWorld
@ProgrammerWorld 5 лет назад
There is no direct way to link 3 text fields in App Designer. To solve your requirement, what you can do is to assign the output value of all the three text fields using same variable in your callback code. To automate this what you can do is to define update callback function for any of the text field. And in this function you can assign other text fields output values as well. Take an internal class variable to do all these stuffs. It will be easy. The above should be very easy to implement. I hope you succeed.
@pazxd578
@pazxd578 3 года назад
No te entendí nada jajajaja yo hablo español, pero buen trabajo. Gracias :)
@danielalejandrogualterosgu6224
Amazing video !!!i have a question do you know how to enter a transfer function to work with this ?
@ProgrammerWorld
@ProgrammerWorld 5 лет назад
Thanks 😀. Regarding transfer function, I think it should be simple. You can take the numerator and denominator separately as input from text boxes in your gui. And then you can use tf matlab command in your callback code to convert it into transfer function. The details of tf command can be found in below link : mathworks.com/help/control/ref/tf.html I hope the above explanation is helpful to you.
@zakariahassan7336
@zakariahassan7336 5 лет назад
thank you and i have small code i want to design gui for it can you help me
@mohammadsamiulhuda1817
@mohammadsamiulhuda1817 2 года назад
Can you please share some references for this design?
@ProgrammerWorld
@ProgrammerWorld 2 года назад
The details and code shown in this video is also available in the below webpage for reference: programmerworld.co/matlab/how-to-design-radio-button-check-boxes-and-drop-down-menu-in-matlab-app-designer/ Cheers Programmer World programmerworld.co -