📄 panelsize.m
字号:
function [nrows,ncols]=panelsize(pwells,dim)% Get the number of columns/rows of the panels of pseudo-wells%% Written by: E. R.: January 15, 2004% Last updated:%% [nrows,ncols]=panelsize(pwells,dim)% INPUT% pwells pseudo-well structure% dim optional dimension for which to compute length (like size(a,2))% OUTPUT% nrows number of rows% ncols number of columnsmnem=pwells.panel_info{1};if nargin == 1 [nrows,ncols]=size(pwells.(mnem));elseif nargin == 2 nrows=size(pwells.(mnem),dim);else error('One or two input arguments required')end
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -