?? opdl.m
字號:
function z=opdl(nam)
% The function OPDL opens and reads 1-D binary file in 'double 64' format.
%
% Example-
% x=opdl('x')
%
% Calling sequence-
% z=opdl(nam)
%
% Input-
% nam - string, that represents the name of the file
% Output-
% z - 1-D data record in memory
%----- Open the file
fd=fopen(nam,'rb');
%----- Read the record in memory
z=fread(fd,'float64');
%----- Close the file
fclose(fd);
return
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -