필터 지우기
필터 지우기

Save structure as a .mat

조회 수: 1 (최근 30일)
cemsi888
cemsi888 2023년 12월 2일
이동: Dyuman Joshi 2023년 12월 2일
l_first=1;
C= mdf_auslesen(filename,resampleTime,channels);
Unrecognized function or variable 'filename'.
strname=erase(filename,'.mf4');
Hilf_char='M_';
strname=append(Hilf_char,strname);
assignin('base',strname,C);
%% I would like to save my structure in to .mat file
%% Hello all,
% I am reading .mf4 from different measures and would like to save
% them in my folder aoutomaticaly as a .mat. Could you please
% recommend me way to save my structure array as a .mat. Thanks in
% advance

답변 (1개)

cemsi888
cemsi888 2023년 12월 2일
이동: Dyuman Joshi 2023년 12월 2일
I found the solution
Thank you
l_first=1;
C= mdf_auslesen(filename,resampleTime,channels);
strname=erase(filename,'.mf4');
Hilf_char='M_';
strname=append(Hilf_char,strname);
save(strname, '-struct', 'C');

카테고리

Help CenterFile Exchange에서 Workspace Variables and MAT-Files에 대해 자세히 알아보기

제품


릴리스

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by