필터 지우기
필터 지우기

How to assign column headings to .mat file?

조회 수: 44 (최근 30일)
hema purad
hema purad 2022년 10월 4일
편집: Ajai Singh 2022년 10월 4일
I have some statiscal measures such as mean, medan, standard devation calculated on 1000 images and there is one row for each image hence there are 1000-by-3 data is generated for image database and I have stored this data as .Mat file. and I would like to add column headings ,(mean, median, standard deviation) to that "mat file" so that, I can access data by column headings for further calculations.. Kindly help me in this regard.
Thanking You.
  댓글 수: 1
Ajai Singh
Ajai Singh 2022년 10월 4일
편집: Ajai Singh 2022년 10월 4일
You can probably try this : ( assuming the name of your mat file is MyData and variables mean median and standard_deviation have their respective values)
a.mean = mean;
a.median = median;
a.standard_deviation = standard_deviation;
save( ' MyData.mat ' ,' a ' );
Load this mat file and use dot notation to extract the values;
ImageData = load( ' MyData.mat ' );
Now suppose that you want to extract the mean, the following line will help you to do that :
ImageData.mean

댓글을 달려면 로그인하십시오.

답변 (2개)

Walter Roberson
Walter Roberson 2022년 10월 4일
It is not possible to add column headings to a mat file.
However you can create a table() object and store it in the mat file.

Nicole
Nicole 2022년 10월 4일
It might be helpful to save the data into a structure, where you can assign field names. In this way, you could make mean, median, and standard deviation be your fields, and index them as such. MATLAB structures can be saved as .mat files.

Community Treasure Hunt

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

Start Hunting!

Translated by