This is a static copy of a profile report

Home

Function details for mean>mysizeThis is a static copy of a profile report

Home

mean>mysize (Calls: 105, Time: 0.002 s)
Generated 06-Jul-2019 16:10:58 using performance time.
subfunction in file C:\Program Files\MATLAB\R2019a\toolbox\matlab\datafun\mean.m
Copy to new window for comparing multiple runs

Parents (calling functions)

Function NameFunction TypeCalls
meanfunction105
Lines where the most time was spent

Line NumberCodeCallsTotal Time% TimeTime Plot
260
s = size(x,dim);
1050.000 s17.4%
259
if isscalar(dim)
1050.000 s14.3%
258
if isnumeric(dim) || islogical...
1050.000 s11.0%
271
end
1050.000 s11.0%
266
end
1050.000 s2.1%
All other lines  0.001 s44.2%
Totals  0.002 s100% 
Children (called functions)
No children
Code Analyzer results
No Code Analyzer messages.
Coverage results
Show coverage for parent directory
Total lines in function15
Non-code lines (comments, blank lines)2
Code lines (lines that can run)13
Code lines that did run6
Code lines that did not run7
Coverage (did run/can run)46.15 %
Function listing
time 
Calls 
 line
 257 
function s = mysize(x, dim)
< 0.001 
    105 
 258
if isnumeric(dim) || islogical(dim) 
< 0.001 
    105 
 259
    if isscalar(dim) 
< 0.001 
    105 
 260
        s = size(x,dim); 
 261 
    else
 262 
        s = size(x,dim(1));
 263 
        for i = 2:length(dim)
 264 
            s = s * size(x,dim(i));
 265 
        end
< 0.001 
    105 
 266
    end 
 267 
else
 268 
    s = numel(x);
< 0.001 
    105 
 269
end 
 270 

< 0.001 
    105 
 271
end