Plotting (5/43) linspace(x1,x2)generates a row vector of 100 linearly equally spaced points between x1 and x2 linspace(x1,x2,N)generates N points between x1 and x2 x linspace(10,20,5) X= 10.0012.5015.0017.5020.00 logspace(x1,x2)can be used for logarithmically equally spaced points PHAW 同濟大学 TONGJI UNIVERSITY Plotting (5/43) ➢ linspace(x1,x2) generates a row vector of 100 linearly equally spaced points between x1 and x2 ➢ linspace(x1,x2,N) generates N points between x1 and x2 x = linspace(10,20,5) x = 10.00 12.50 15.00 17.50 20.00 ➢ logspace(x1,x2) can be used for logarithmically equally spaced points