How do I continue a path?
Mostrar comentarios más antiguos
Hello there, I'm a MATLAB beginner and started working with it a few weeks ago.
There is data I have to analyse. I created a FOR loop to check my data and plot it.
I have this path:
data = electrophysiology{1, 1}.left.recordings{1, 1}.macro_recordings.eeg
but I need it to split at: data = electrophysiology{1, 1}.left.recordings , because here I have 3 structs of recordings. I want it to to check all 3 recording structs for each macro_recording.eeg, how do I do that?
Thanks!
3 comentarios
Image Analyst
el 20 de Jul. de 2020
What is electrophysiology? If it's a structure array you wouldn't use braces. Is it a cell array with a structure inside each cell? What does
whos electrophysiology
say? Can you attach electrophysiology in a .mat file? And why can't you just do
data = electrophysiology{1, 1}.left.recordings
like you said?
Adam Danz
el 20 de Jul. de 2020
Could you show us the 3 structs? For example, is it
data = electrophysiology{1, 1}
data = electrophysiology{2, 1}
data = electrophysiology{3, 1}
or is it
data = electrophysiology{1, 1}.left
data = electrophysiology{1, 1}.right
data = electrophysiology{1, 1}.both
or something else?
Dinesh Yadav
el 23 de Jul. de 2020
It would be easier for us to help if you could reply to what Image Analyst and Adam Danz's questions.
Respuestas (0)
Categorías
Más información sobre Data Types en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!