creating 3D matrix
Ältere Kommentare anzeigen
i am trying to create a 3D matrices of total dose , energy and density distributions
The diemntion of the files are 1x9131020 ( all the files have similar dimentions )
5 Kommentare
James Tursa
am 9 Feb. 2021
We need more details. Will you be reading multiple files (e.g., in a loop) and then concatenating the data into one 3D array? How are you reading the files?
Ahmad Abbas
am 9 Feb. 2021
Walter Roberson
am 9 Feb. 2021
You might not see the relevance of that immediately, but the way you are using load() is creating variable names dynamically, and you would have to fish through the workspace to find out which variable names were created in order to know which variables to concenate together into the 3D array. Easier by far to Not Do That.
Ahmad Abbas
am 9 Feb. 2021
Stephen23
am 9 Feb. 2021
"... but i only got three files."
It is not important how many files you have. Load them into an output:
S = load(..)
and process the content of the structure S.
Akzeptierte Antwort
Weitere Antworten (0)
Kategorien
Mehr zu Workspace Variables and MAT Files finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!