Get data out of a struct to manipulate
3 ビュー (過去 30 日間)
古いコメントを表示
I have created a struct where the first bit is just a name, and the second bit is a bunch of data
I want to get the data out of the struct so I can manipulate it and put it into a table or an array
0 件のコメント
回答 (1 件)
Cris LaPierre
2023 年 7 月 14 日
Extract the data using the structurename.fieldname syntax. See here: https://www.mathworks.com/help/matlab/matlab_prog/create-a-structure-array.html
% create the structure
patient.test = [79 75 73; 180 178 177.5; 220 210 205]
% Extract the data
data = patient.test
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Structures についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!