Which command generates a vector of 100 points between 1 and
Which command generates a vector of 100 points between 1 and 65? linspace (1, 100, 65); linspace (65, 100); linspace (1:65, 100); linspace (1, 65, 100);
Solution
Ans)
Question 11_) linspace(1,65,100); generates vector of 100 points
Reason:
y = linspace(x1,x2,n) generates n points between starting from x1 to x2
