필터 지우기
필터 지우기

Use value app designer in script.m

조회 수: 2 (최근 30일)
Luca Re
Luca Re 2023년 6월 2일
댓글: Luca Re 2023년 6월 11일
hi, i want to use CurrenList value (in app Designal) to use in myscript .m
How can i do it?

채택된 답변

Rik
Rik 2023년 6월 5일
편집: Rik 2023년 6월 5일

The solution is simple: use a function instead of a script (although it is possible to write a script that will use this value).

A script shares the workspace with the calling environment, while a function uses input and output arguments. That makes functions a documentable interface that can be updated without worrying that code using the function will break.

You should not use a script for things you plan to use after next week.

If you have trouble with Matlab basics you may consider doing the Onramp tutorial (which is provided for free by Mathworks). There is a chapter on functions.

  댓글 수: 7
Rik
Rik 2023년 6월 11일
You can use either this:
disp(name)
or this:
fprintf('the value of the ''name'' variable is %s\n',name)
But since you're using a graphical user interface, it makes more sense to show this value somewhere in your GUI, since a user might not be looking at the command window.
Luca Re
Luca Re 2023년 6월 11일
thank you

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Develop Apps Using App Designer에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by