
Matlab linspace is used to Generate linearly spaced vector.Syntax for Matlabn Linspace: -
y = linspace(x1,x2)
y = linspace(x1,x2,n)y = linspace(x1,x2) give a row vector which is made with the 100 points with equal distance between x1 and x2
y = linspace(x1,x2,n) return the n number of points...