MATLAB: How to editing the (.mat) file in matlab..

image captioningimage processingMATLAB

i have a project in matlab. but i want to editing a pretrained data.but that file is .mat file.so how to edit that file so i can put my data in this file. please help me.

Best Answer

You need to load .mat file into work space using load. And then, edit the data accordingly and save it into a .mat file using save. Read about load and save functions.