help with expressing a function
    4 Ansichten (letzte 30 Tage)
  
       Ältere Kommentare anzeigen
    
    Jama Ali
 am 11 Okt. 2020
  
    
    
    
    
    Beantwortet: Walter Roberson
      
      
 am 11 Okt. 2020
            Hi, can someone please explain why i get this and not, 0.006366*cos(t)?

0 Kommentare
Akzeptierte Antwort
  Walter Roberson
      
      
 am 11 Okt. 2020
        syms t
sym(2/pi*0.01, 'd') * cos(t)
The reason you are getting what you are getting, is that the default symbolic conversion of floating point number to symbolic number, is for the floating point number to be converted to rational. Well, not really rational as such: it is extended to include sqrt(), and pi.
You can specifically tell MATLAB to convert floating point into software floating point by using the 'd' flag.
Or you can convert after the fact by using vpa() on the result you got.
0 Kommentare
Weitere Antworten (1)
Siehe auch
Kategorien
				Mehr zu Number Theory finden Sie in Help Center und File Exchange
			
	Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


