GUI and user-defined function

3 次查看(过去 30 天)
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:

回答(1 个)

Mario Malic
Mario Malic 2020-9-6
Define your result as an empty array first. This may resolve your issues, depending on the rest of the code
result = [];
  4 个评论
Rik
Rik 2020-9-6
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 2020-9-6
Actually, I am one of those people! Thanks for the hint.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Functions 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by