How to open variables in command line?
조회 수: 27 (최근 30일)
이전 댓글 표시
Is there a function that can be typed into the command window to open a variable listed in the workspace? I have many hundreds of variables generated in one of my codes and finding individual variables is a huge time waster.
댓글 수: 0
채택된 답변
Chandrasekhar
2014년 3월 10일
use the command
openvar(variablename)
eg: if variable name is var then enter the command
openvar('var')
댓글 수: 0
추가 답변 (2개)
David Sanchez
2014년 3월 10일
You can sue who:
To present all the variables:
who
To present variables whose name start by H:
who H*
To present variables ending by 1:
who *1
참고 항목
카테고리
Help Center 및 File Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!