This is a static copy of a profile report

Home

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

Home

linspace (Calls: 101, Time: 0.003 s)
Generated 03-Jul-2019 20:22:30 using performance time.
function in file C:\Program Files\MATLAB\R2019a\toolbox\matlab\elmat\linspace.m
Copy to new window for comparing multiple runs

Parents (calling functions)

Function NameFunction TypeCalls
ff_wkz_evffunction101
Lines where the most time was spent

Line NumberCodeCallsTotal Time% TimeTime Plot
33
y = d1 + (0:n1).*(d2 - d1)./n1...
1010.001 s23.7%
35
if ~isempty(y)
1010.000 s11.5%
42
end
1010.000 s4.6%
19
n = floor(double(n));
1010.000 s1.6%
18
else
1010.000 s1.5%
All other lines  0.002 s57.1%
Totals  0.003 s100% 
Children (called functions)
No children
Code Analyzer results
No Code Analyzer messages.
Coverage results
Show coverage for parent directory
Total lines in function42
Non-code lines (comments, blank lines)15
Code lines (lines that can run)27
Code lines that did run18
Code lines that did not run9
Coverage (did run/can run)66.67 %
Function listing
time 
Calls 
 line
   1 
function y = linspace(d1, d2, n)
   2 
%LINSPACE Linearly spaced vector.
   3 
%   LINSPACE(X1, X2) generates a row vector of 100 linearly
   4 
%   equally spaced points between X1 and X2.
   5 
%
   6 
%   LINSPACE(X1, X2, N) generates N points between X1 and X2.
   7 
%   For N = 1, LINSPACE returns X2.
   8 
%
   9 
%   Class support for inputs X1,X2:
  10 
%      float: double, single
  11 
%
  12 
%   See also LOGSPACE, COLON.
  13 

  14 
%   Copyright 1984-2016 The MathWorks, Inc.
  15 

< 0.001 
    101 
  16
if nargin == 2 
  17 
    n = 100;
< 0.001 
    101 
  18
else 
< 0.001 
    101 
  19
    n = floor(double(n)); 
< 0.001 
    101 
  20
end 
< 0.001 
    101 
  21
if ~isscalar(d1) || ~isscalar(d2) || ~isscalar(n) 
  22 
    error(message('MATLAB:linspace:scalarInputs'));
  23 
end
< 0.001 
    101 
  24
n1 = n-1; 
< 0.001 
    101 
  25
c = (d2 - d1).*(n1-1); %check intermediate value for appropriate treatment 
< 0.001 
    101 
  26
if isinf(c) 
  27 
    if isinf(d2 - d1) %opposite signs overflow
  28 
        y = d1 + (d2./n1).*(0:n1) - (d1./n1).*(0:n1);
  29 
    else
  30 
        y = d1 + (0:n1).*((d2 - d1)./n1);
  31 
    end
< 0.001 
    101 
  32
else 
< 0.001 
    101 
  33
    y = d1 + (0:n1).*(d2 - d1)./n1; 
< 0.001 
    101 
  34
end 
< 0.001 
    101 
  35
if ~isempty(y) 
< 0.001 
    101 
  36
    if d1 == d2 
  37 
        y(:) = d1;
< 0.001 
    101 
  38
    else 
< 0.001 
    101 
  39
        y(1) = d1; 
< 0.001 
    101 
  40
        y(end) = d2; 
< 0.001 
    101 
  41
    end 
< 0.001 
    101 
  42
end 

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