How to select a specific point in a linearly spaced vector?
    3 views (last 30 days)
  
       Show older comments
    
Dear all,
suppose that we have x defined:
clc
x = linspace(1,4,7)
what is the pertinent code to capture point: x = 2?
0 Comments
Answers (1)
  Sriram Tadavarty
    
 on 21 Apr 2020
        Hi Alireza,
find(x==2); % This value tells the index in x where the value is 2
Hope this helps,
Regards,
Sriram
0 Comments
See Also
Categories
				Find more on Creating and Concatenating Matrices in Help Center and File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
