Getting structure content using strings
11 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
samuel okeleye
am 10 Aug. 2018
Kommentiert: samuel okeleye
am 11 Aug. 2018
I have kt containing data type "strings", one of them is "grad"i.e kt(1,1)=grad which is a string. I am also trying to get the content of the structure(Data.edata.grad) in my data using the string data set by doing Data.edata.kt(1,1) but i am getting the error kt(1,1) is not an existing field. How can i convert a string to a structure or how can i use my string data set to get the structures?
3 Kommentare
Akzeptierte Antwort
Walter Roberson
am 11 Aug. 2018
Data.edata.(kt(1,1))
You might perhaps need to use
Data.edata.(kt{1,1})
5 Kommentare
Walter Roberson
am 11 Aug. 2018
That code relies upon the fields all being the same datatype and all scalars (either numeric scalars or scalar logical or scalar character or scalar cell array.)
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Structures finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!