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

📄 getfun.m

📁 matlab算法集 matlab算法集
💻 M
字号:
function y = getfun (f)
%----------------------------------------------------------------
% Usage:       y = getfun (f)
%
% Description: Check to see that whether or not a given function
%              f is present as an inline function or as an
%              M-file.  
%
% Inputs:      f = string containing name of inline or M-file
%                  function, or empty string.
%
% Outputs:     y = true if f is an inline function or an M-file
%                  function.  False if f is an empty string.
%----------------------------------------------------------------
   y = isa (f,'inline');
   if ~y
      y = ~strcmp(f,'');
   end
%----------------------------------------------------------------


⌨️ 快捷键说明

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