double.m

来自「The MatlabBGL library fills a hole in Ma」· M 代码 · 共 11 行

M
11
字号
function d = double(ipd)
% IPDOUBLE/DOUBLE Return the data as a Matlab double type.  
% d = double(ipd) returns a double array.  Changing d will not change the
% ipd data.
%
% Example:
%    ipd = ipdouble(cumsum(ones(5,1)));
%    d = double(ipd);
%    d(2) = 10: % Doesn't change ipd

d = ipd.a;

⌨️ 快捷键说明

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