Im using a code to calculate when a satellite re-enters the atmosphere. I need the code to stop running after the satellites altitude goes below 100km. Is there a function i can use to do this?
    11 visualizzazioni (ultimi 30 giorni)
  
       Mostra commenti meno recenti
    
Im using a code to calculate when a satellite re-enters the atmosphere. I need the code to stop running after the satellites altitude goes below 100km. Is there a function i can use to do this?
0 Commenti
Risposte (2)
  Nut
      
 il 21 Mar 2017
        Maybe the return function:
https://it.mathworks.com/help/matlab/ref/return.html
if altitude < 100
  return
end
0 Commenti
  Star Strider
      
      
 il 21 Mar 2017
        It depends on how you’re writing your code. If you’re using a differential equation solver, consider using the ‘event’ option. Otherwise, consider a while loop.
0 Commenti
Vedere anche
Categorie
				Scopri di più su Reference Applications 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!


