Extracting data from .mat file

4 visualizzazioni (ultimi 30 giorni)
Raisa Sharmin
Raisa Sharmin il 18 Mag 2021
Commentato: Star Strider il 19 Mag 2021
Hi,
I need to extract illumination and time data from a .mat file and calculate corresponding power output for a particular solar panel. Can anyone help me regarding this ?
Thanks in advance.
  1 Commento
Rik
Rik il 18 Mag 2021
If you have trouble with Matlab basics you may consider doing the Onramp tutorial (which is provided for free by Mathworks).
doc load

Accedi per commentare.

Risposta accettata

Star Strider
Star Strider il 18 Mag 2021
Use the load function, and specifically, Load List of Variables into Structure Array. The structure array then allows selection of specific variables within the file to import into the workspace.
  11 Commenti
Raisa Sharmin
Raisa Sharmin il 19 Mag 2021
Hi, I am sharing the screenshot
Star Strider
Star Strider il 19 Mag 2021
As I mentioned earlier, load ‘Alison_intensity_data.mat’ in to a structure. You can then determine what is has in it, and extract it.
D = load('Alison_intensity_data.mat');
time = D.time; % Try Something Like This To Extract It
Apparently, ‘time’ is not already a table, so perhaps using the timetable function instead will be appropriate.
.

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Data Type Conversion in Help Center e File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by