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

📄 mat2celldefault.m

📁 Continuous Profile Models (CPM) Matlab Toolbox.
💻 M
字号:
function y = mat2cellDefault(x)

%% uses the built-in mat2cell, but instead of having
%% to specify all the row lengths, and all the column lengths,
%% this assumes that x stores only one numeric entry per cell entry

[r,c]=size(x);

rr = ones(1,r);
cc = ones(1,c);
y = mat2cell(x,rr,cc);

⌨️ 快捷键说明

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