how to calculate taylor series expansion of sin(k*(x-x1)-4k^3*t) in matlab?
    5 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    zelda lambda
 el 23 de Sept. de 2016
  
    
    
    
    
    Respondida: Abhishek Jain
      
 el 23 de Sept. de 2016
            currently working on solitons.and did,nt know how to use matlab r mathematica.
0 comentarios
Respuesta aceptada
  Abhishek Jain
      
 el 23 de Sept. de 2016
        You can use in-built MATLAB function,
 taylor(f,var)
to generate Taylor series. For your case, the code will look like
syms x
k=1;  %%Add your own value pf 'k'
x1=1; %%Add your own value of 'x1'
t=1;  %%Add your own value of 't'
f=sin(k*(x-x1)-4*(k^3)*t);
taylor(f,x)
This code will give you Taylor's Series for your function. Hope that helps.
0 comentarios
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!