Creating a *.mat file

조회 수: 897 (최근 30일)
chaos4u2
chaos4u2 2013년 2월 12일
댓글: nitish kumar 2023년 2월 28일
Hello, I want to create a *.mat file, for example named bathymetry. This array called bathymetry I want to be formed by 3 other arrays, for example, x, y and z. In a way, that when I charged the mat file it transforms into three files called x, y and z.
I've tried my easy way: for example: bathymetry=[x,y,z], but when I charged it, it's only 1 file called bathymetry and I want to have them separetely.
Please help me.
  댓글 수: 2
the cyclist
the cyclist 2013년 2월 12일
I don't know what you mean by "charge" the mat file.
Thorsten
Thorsten 2013년 2월 12일
편집: Thorsten 2013년 2월 12일
probably "load" (German "laden" can be translated as "charge" or "load", depending on context)

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

채택된 답변

Azzi Abdelmalek
Azzi Abdelmalek 2013년 2월 12일
X=10
Y=20
Z=30
save bathymetry X Y Z
To load your data
load bathymetry
  댓글 수: 3
Annanya
Annanya 2022년 11월 26일
which file extention to use to save mat file
Saytam Maddeshiya
Saytam Maddeshiya 2023년 2월 14일
.mat

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

추가 답변 (8개)

the cyclist
the cyclist 2013년 2월 12일
Do you mean this?
% Create some variables
x = rand(3);
y = magic(3);
z = eye(3);
% Save the variable x,y,z into one *.mat file
save bathymetry.mat x y z
% Clear them out of the workspace
clear x y z
% Load them again
load bathymetry.mat
  댓글 수: 5
Walter Roberson
Walter Roberson 2016년 9월 22일
Machine Learning & Power Systems Ali comments
error when i save in .mat
Walter Roberson
Walter Roberson 2016년 9월 22일
Machine Learning & Power Systems Ali: we are going to need more detail than that. What is your code, and what is your exact error message?

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


matija corak
matija corak 2015년 1월 26일
Hello, I need help. I was record on my phone a sound. I want to hear that sound in matlab. How to do that? Thanks.
  댓글 수: 1
matija corak
matija corak 2015년 1월 26일
I already tried with load and audioread and so on. Than I tried that sound convert in .wav and he still does not recognize that file. When I put for example load pcela.wav % pcela.wav is my name of that recorded sound Error using load Unknown text on line number 1 of ASCII file pcela.wav "RIFF’_".
Am I doing something wrong? Please help me I don't have no idea anymore and I cant find anything similar on web.

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


Lobna Ragab
Lobna Ragab 2016년 1월 15일
How can I add many records to that file, I mean like
save filename X Y
X = 1,2,3,4
Y = 5,6,7,8
like table?
  댓글 수: 1
nitish kumar
nitish kumar 2023년 2월 28일
just use the array like
X=[1,2,3,4]
Y=[5,6 7,8]
save filename.mat X Y

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


geetu yadav
geetu yadav 2016년 4월 5일
svmStructDisease = svmtrain(diseasefeat,diseasetype); in this code how to create diseasefeat and diseasetype file?
  댓글 수: 1
Shivaprasad S
Shivaprasad S 2016년 4월 13일
Same problem I am also facing please give some idea how to create I don't know anything please

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


Machine Learning Enthusiast
Machine Learning Enthusiast 2016년 9월 22일
  댓글 수: 2
Bjorn Gustavsson
Bjorn Gustavsson 2016년 9월 22일
That typically means that you don't have write permissions in the current directory. Move to somewhere else (cd...) and try again.
HTH
Walter Roberson
Walter Roberson 2016년 9월 22일
You are probably cd'd to a directory that is underneath the MATLAB installation. The directory that MATLAB starts executing in is not necessarily your personal MATLAB directory.

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


ramya anandan
ramya anandan 2017년 6월 7일
thank you so much Bjorn Gustavsson
  댓글 수: 1
Santhan S
Santhan S 2018년 1월 15일
Thanks a lot.....

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


Saravanan Nagesh
Saravanan Nagesh 2018년 3월 27일
@Machine Learning Enthusiast
Check the following code for the path of the current Matlab folder
path = pwd
use 'cd' to change it to another folder with write access.
usually, the default folder for Matlab code in most cases is" 'C:\Users\xxx'"
changing it to another drive solves this

tuncel3
tuncel3 2021년 7월 2일
First define a file name with its location
saveFileName='datafiles\filename2.mat';
next use below code to create an empty .mat file
save(saveFileName);

카테고리

Help CenterFile Exchange에서 Search Path에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by