Rapid access and data manage of a table with cell array in the columns
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Stefano Massardi
am 21 Feb. 2021
Beantwortet: Duncan Po
am 22 Feb. 2021
Hi everyone
I have a database like this
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/526779/image.png)
How can I rapidly access the data in cell columns (example: "forze", "H3raw", "H3p"...)
I would like to scroll the table rows and for each line doing operations or take data from the double array in those columns. I think i'm doing it in a very tedious way while maybe there are proper ways to save code and time. For example: calculate the maximum of each column of the H3raw cell column for each row and save the values in a table or array
Thanks
0 Kommentare
Akzeptierte Antwort
Duncan Po
am 22 Feb. 2021
You can use cellfun. For example, to compute the maximum of each column of the H3raw cell column for each row, do this:
cellfun(@max, dati.H3raw, 'UniformOutput', false)
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Logical finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!