how to access a workspace call array in appdesigner and get the transpose of that
조회 수: 1 (최근 30일)
이전 댓글 표시
how to load a workspace call array in appdesigner and get the transpose of that. i have a push button in my app.in my push button call back function i should access workspace cell array and get the transpose of it. Kindly help me how to solve it.
댓글 수: 1
답변 (1개)
Image Analyst
2017년 4월 28일
FAQ: http://matlab.wikia.com/wiki/FAQ#How_can_I_share_data_between_callback_functions_in_my_GUI.28s.29.3F
Every function and GUI you build has its own workspace. It's not a good idea to depend on stuff being in the "base" or "global" workspaces and to import them into your functions workspace. The best way is to pass variables in and out via the argument list.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Downloads에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!