cell2num.m
来自「三谱混合相位子波估计!! 这是我的一篇文章所涉及到的matlab 源代码」· M 代码 · 共 17 行
M
17 行
function x = cell2num(X)
% a = cell2num(A)
% The input 'A' is a numeric cell array (one number per cell)
% The output 'a' is a numeric matrix.
%% This program was tested under versions 5.2 and 5.3 on PC
%
% Created at: sept. 1999 by
% |
% V
% e-mails: jonathan@ndc.soreq.gov.il
% bar-sagi@actcom.co.il
[N M]=size(X);
y=cat(2,X{:});
x = reshape(y,N,M);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?