anyway to transfer data from matlab workspace to appdesigner

조회 수: 124 (최근 30일)
Yu Li
Yu Li 2019년 8월 21일
댓글: haobo zhang 2022년 5월 5일
Hi:
I want to develop an app based on the data in the workspace. is there anyway to do it like 'cftool'? i.e. once I open the app, the list of variable in workspace are available :
Capture.JPG
Thanks!
Yu

답변 (1개)

Payas Bahade
Payas Bahade 2019년 8월 26일
  댓글 수: 2
Yu Li
Yu Li 2019년 8월 26일
Hi:
Thanks for your reply.
The 'evalin' function can transfer the known variables from workspace to app, but the issue I faced is that, I need to know variable names that exist in the workspace.
for example, in cftool, you can see that once I launch the 'cftool', the variable names that exist in workspace are available in the dropdown list. how does this step be conducted?
Thanks!
Yu
haobo zhang
haobo zhang 2022년 5월 5일
I've got one way, you can try:
variable_names = evalin('base','who');
It'll return a cell array of the variable names in the workspace, then you can load specific data like this:
first_data = evalin('base', variable_names{1});

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

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by