I want to convert the cell array to struct but I dont know how to use the cell2struc command. I am new, please help me
1 回表示 (過去 30 日間)
古いコメントを表示
Manh Duc Luong
2021 年 12 月 3 日
コメント済み: Yusuf Suer Erdem
2021 年 12 月 3 日
patients = {'LastName','FirstName','Age','Weight','Diagnosis';'Johnston','John','69','230','Pulmonary Hypertension';'Lee','Kyle','34','168','Type II Diabetes';'Miller','Fionna','55','194','Congestive Heart Failure'}
structArray = cell2struct(patients)
0 件のコメント
採用された回答
Yusuf Suer Erdem
2021 年 12 月 3 日
Hi Manh, try these codes below. After running the code open s matrix there and this will be your structure. To use cell2struct command you need give information of classes and dimensions. Good luck.
clc; clear; close all;
patients = {'Johnston','John','69','230','Pulmonary Hypertension';'Lee','Kyle','34','168','Type II
Diabetes';'Miller','Fionna','55','194','Congestive Heart Failure'};
f = {'LastName','FirstName','Age','Weight','Diagnosis'};
s = cell2struct(patients,f,2);
7 件のコメント
Walter Roberson
2021 年 12 月 3 日
If your workspace is full of matrices from other scripts... perhaps you should be writing functions instead of scripts.
Yusuf Suer Erdem
2021 年 12 月 3 日
@Walter Roberson that is true. using functions saves you from dirty workspace.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Data Type Conversion についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!