last.m
来自「Continuous Profile Models (CPM) Matlab T」· M 代码 · 共 17 行
M
17 行
% function xx = last(yy)%% This is useful when you are working with cell arrays of vectors % and want to index into the cell array and the vector all at% once. For eg. last(yy{1});function xx = last(yy)if isempty(yy) xx=[];else xx=yy(end);endreturn
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?