I want to use a ist order differential equation for moving a coordinate point to another .how can i do it?
    1 visualización (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    muhammad ahmad
 el 23 de Sept. de 2018
  
    
    
    
    
    Comentada: muhammad ahmad
 el 25 de Sept. de 2018
            I want to use an ist order differential equation for moving a coordinate point to another .how can I do it? mean if my initial coordinate point is {0,3} and I have to move to {4,5} how can I implement it in Matlab While using differential equation
0 comentarios
Respuesta aceptada
  Torsten
      
      
 el 24 de Sept. de 2018
        
      Editada: Torsten
      
      
 el 24 de Sept. de 2018
  
      (x(t),y(t)) = (0,3) + (4*t,2*t), t in [0;1]
Now differentiating gives
dx/dt = 4, x(0) = 0
dy/dt = 2, y(0) = 3
Best wishes
Torsten.
3 comentarios
  Torsten
      
      
 el 25 de Sept. de 2018
				This is not code, but an idea how to set up the differential equations for your purpose.
Más respuestas (0)
Ver también
Categorías
				Más información sobre Numerical Integration and Differential Equations en Help Center y File Exchange.
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!