📄 svdl.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 + -