I have 2 columns of data, speed and Torque. I am looking for a way to capture the value of Engine where Torque is zero.
    3 views (last 30 days)
  
       Show older comments
    
    raghavendra kandukuri
 on 27 Sep 2018
  
    
    
    
    
    Answered: Star Strider
      
      
 on 27 Sep 2018
            I have 2 columns of data, speed and Torque. i am looking for a way to capture that particular value of speed where torque is zero and the value one above it of speed column. for example in the attached sample data points(excel), i need to capture 2300 for which torque is 0 and 2244 which is one above it. PFA
0 Comments
Accepted Answer
  Star Strider
      
      
 on 27 Sep 2018
        Try this:
[D,S,R] = xlsread('sample.xlsx');
ridx = find(D(:,2) <= 0);
oneAbove = D(ridx-1,:)
oneAbove =
         2244       532.72
0 Comments
More Answers (0)
See Also
Categories
				Find more on Electrical Block Libraries 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!
