Clear Filters
Clear Filters

GUI and user-defined function

3 views (last 30 days)
Huy Truong Tan Gia
Huy Truong Tan Gia on 6 Sep 2020
Commented: Mario Malic on 6 Sep 2020
Can anyone know what is the problem?
This is the the user-defined function.
This is the GUI. And when I run it, there are errors:

Answers (1)

Mario Malic
Mario Malic on 6 Sep 2020
Define your result as an empty array first. This may resolve your issues, depending on the rest of the code
result = [];
  4 Comments
Rik
Rik on 6 Sep 2020
elseif can be easier to read. It also allows compound conditions, which can be hard or impossible to create with switch,case.
These characters need to be encoded correctly inside the mlapp file and in the m file. If you aren't using R2020a you really need to be careful about editing, as you need to make sure Matlab saves the file encoded with UTF-8, which it does by default in R2020a, but not before. Many people have lost their é characters in their comments and chars and getting them replaced with questionmarks.
Mario Malic
Mario Malic on 6 Sep 2020
Actually, I am one of those people! Thanks for the hint.

Sign in to comment.

Categories

Find more on Functions in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!