Combine multiple matrix variables into a structure?

조회 수: 3 (최근 30일)
Kirsty Alsop
Kirsty Alsop 2018년 9월 3일
편집: Stephen23 2018년 9월 4일
I currently have 180 matrix variables (1336 x 4) that I would like to make into a structure to make it easier to work with. In the end I want to be able to plot all of this data in the same way on separate plots or subplots.
What is the best way to combine the matrices? I am able to create a structure using 'whos' and then add on a 'data' field of zeros to put the final data in but how would I transcribe all of the variable data into the structure? The variables are not concurrently named so I am struggling to get a for loop to work.
  댓글 수: 3
Kirsty Alsop
Kirsty Alsop 2018년 9월 4일
Unfortunately, this was imported by hand by a colleague and now given to me. They informed me that the matrices were imported from .txt files using the import tool but I have no further info. Hence, I was hoping to streamline the data using a structure. All I currently have is a .mat file with the workspace saved!
Walter Roberson
Walter Roberson 2018년 9월 4일
The best approach would be to not get into this situation, to store the information in a structured manner instead of in separate variables.

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

채택된 답변

Stephen23
Stephen23 2018년 9월 4일
편집: Stephen23 2018년 9월 4일
You do not say anything about how these variables get into the workspace, so I am going to a guess that they are all contained in one .mat file, in which case the answer to your question is trivially simple:
S = load(...)
If the data are saved/created in some other way, then you please tell us exactly how you got all of those variables into the workspace, and we will show you better methods for handling data.
  댓글 수: 2
Kirsty Alsop
Kirsty Alsop 2018년 9월 4일
Thank you, I was hoping there would be something simple like this to make it work.
Stephen23
Stephen23 2018년 9월 4일
편집: Stephen23 2018년 9월 4일
@Kirsty Alsop: I hope that it helps! You will probably find the function fieldnames to be very useful, and this too:

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

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by