calculate the closest and the furthest values to a nominal diameter
    3 visualizzazioni (ultimi 30 giorni)
  
       Mostra commenti meno recenti
    
I have plotted different circles with convergent diameters to a nominal value. I want to know which circle is the closest and the which one is the furthest from the nominal circle. I really really need your help
0 Commenti
Risposte (1)
  Image Analyst
      
      
 il 26 Set 2018
        Try this
differences = diameters - nominalDiameter;
[closestDiff, indexOfClosest] = min(differences);
Vedere anche
Categorie
				Scopri di più su 2-D and 3-D Plots in Help Center e File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

