This is a static copy of a profile report

Home

Function details for dealThis is a static copy of a profile report

Home

deal (Calls: 1785, Time: 0.016 s)
Generated 14-Jul-2019 10:59:25 using performance time.
function in file C:\Program Files\MATLAB\R2019a\toolbox\matlab\datatypes\deal.m
Copy to new window for comparing multiple runs

Parents (calling functions)

Function NameFunction TypeCalls
ffs_for_br_block_genfunction1785
Lines where the most time was spent

Line NumberCodeCallsTotal Time% TimeTime Plot
39
varargout = varargin;
17850.005 s30.8%
40
end
17850.003 s17.5%
33
if nargin==1,
17850.001 s4.1%
36
if nargout ~= nargin
17850.001 s3.5%
35
else
17850.000 s2.5%
All other lines  0.007 s41.5%
Totals  0.016 s100% 
Children (called functions)
No children
Code Analyzer results
Line numberMessage
33Extra comma is unnecessary in IF statement before newline.
Coverage results
Show coverage for parent directory
Total lines in function40
Non-code lines (comments, blank lines)32
Code lines (lines that can run)8
Code lines that did run5
Code lines that did not run3
Coverage (did run/can run)62.50 %
Function listing
time 
Calls 
 line
   1 
function varargout = deal(varargin)
   2 
%DEAL Deal inputs to outputs.
   3 
%    [A,B,C,...] = DEAL(X,Y,Z,...) simply matches up the input and
   4 
%       output lists.  It is the same as A=X, B=Y, C=Z, ...
   5 
%    [A,B,C,...] = DEAL(X) copies the single input to all
   6 
%       the requested outputs.  It is the same as A=X, B=X, C=X, ...
   7 
%
   8 
%    DEAL is most useful when used with cell arrays and structures
   9 
%    via comma separated list expansion.  Here are some useful
  10 
%    constructions:
  11 
%    [S.FIELD] = DEAL(X) sets all the fields with the name FIELD
  12 
%       in the structure array S to the value X.  If S doesn't
  13 
%       exist, use [S(1:M).FIELD] = DEAL(X);
  14 
%    [X{:}] = DEAL(A.FIELD) copies the values of the field with
  15 
%       name FIELD to the cell array X.  If X doesn't exist,
  16 
%       use [X{1:M}] = DEAL(A.FIELD).
  17 
%    [A,B,C,...] = DEAL(X{:}) copies the contents of the cell
  18 
%       array X to the separate variables A,B,C,...
  19 
%    [A,B,C,...] = DEAL(S.FIELD) copies the contents of the fields
  20 
%       with the name FIELD to separate variables A,B,C,...
  21 
%
  22 
%    Examples:
  23 
%       sys = {rand(3) ones(3,1) eye(3) zeros(3,1)};
  24 
%       [a,b,c,d] = deal(sys{:});
  25 
%
  26 
%       direc = dir; filenames = {};
  27 
%       [filenames{1:length(direc),1}] = deal(direc.name);
  28 
%
  29 
%    See also LISTS, PAREN.
  30 

  31 
%   Copyright 1984-2005 The MathWorks, Inc. 
  32 

< 0.001 
   1785 
  33
if nargin==1, 
  34 
  varargout = varargin(ones(1,nargout));
< 0.001 
   1785 
  35
else 
< 0.001 
   1785 
  36
  if nargout ~= nargin 
  37 
    error(message('MATLAB:deal:narginNargoutMismatch'))
  38 
  end
  0.005 
   1785 
  39
  varargout = varargin; 
  0.003 
   1785 
  40
end 

Other subfunctions in this file are not included in this listing.