Find zeros in interval
    11 visualizzazioni (ultimi 30 giorni)
  
       Mostra commenti meno recenti
    
    Harel Harel Shattenstein
 il 6 Lug 2018
  
I try to find a solution for

Try 1
syms x t
  f=@(x)int(exp(-(t./x).^2),t,-1,1)-1.5;
  fzero(f,[0.5,2])
Try 2
solve(int(exp(-(t./x).^2),t,-1,1)==1.5,x)
The first try does not work, the second work but I can enter an inverval How can I solve an equation given an interval?
0 Commenti
Risposta accettata
Più risposte (1)
Vedere anche
Categorie
				Scopri di più su Symbolic Math Toolbox 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!


