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: 129, Time: 0.002 s)
Generated 13-Jul-2019 20:40:56 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
meanfunction129
Lines where the most time was spent

Line NumberCodeCallsTotal Time% TimeTime Plot
260
s = size(x,dim);
1290.000 s15.6%
258
if isnumeric(dim) || islogical...
1290.000 s15.2%
259
if isscalar(dim)
1290.000 s11.8%
271
end
1290.000 s10.2%
266
end
1290.000 s2.6%
All other lines  0.001 s44.6%
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 
    129 
 258
if isnumeric(dim) || islogical(dim) 
< 0.001 
    129 
 259
    if isscalar(dim) 
< 0.001 
    129 
 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 
    129 
 266
    end 
 267 
else
 268 
    s = numel(x);
< 0.001 
    129 
 269
end 
 270 

< 0.001 
    129 
 271
end