Can I save variables to the workspace to view them before the script generating them ends?

조회 수: 3 (최근 30일)
I have a script that runs functions that generate structures on a dataset I'm working on, then plots values from the fields of those structures by a user input of the names of those fields. Is there a way for me to view what the fields are so I can make sure to input them correcly into my plot function before the script terminates?

채택된 답변

AdamG2013468
AdamG2013468 2019년 8월 22일
You could just add the struct comewhere in your script without supressing with a semi-colon so it prints to the command window. For example, if your struct 'A' has fields 'tree', 'cat', 'house', then just include:
A
so it prints something like,
A =
struct with fields:
tree:
cat:
house:
Am I understanding your question?
  댓글 수: 1
Blake Conka
Blake Conka 2019년 8월 22일
This works. I was trying to keep my command window looking clean, but simple is probably better. Thanks!

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Structures에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by