⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 svdl.m

📁 这是一个关于hht变换很有用的工具箱
💻 M
字号:
function z=svdl(nam,x)
 
% The function SVDL saves data x as binary file with the name nam 
% in 'double 64' format.
%
% Example-
% 	svdl('x',x)
%
% Calling sequence-
% z=svdl(nam,x)
%
% Input-
%	nam	- string, that represents the name of the file
%	x	- data record in memory
% Output-
%	z	- operation indicator

%----- Open the file
fd=fopen(nam,'wb');

%----- Read the record in memory
fwrite(fd,x,'float64');

%----- Close the file
fclose(fd);
return

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -