Time-dependent derivatives of a function with vector-valued components

1 Ansicht (letzte 30 Tage)
Lilli
Lilli am 30 Jun. 2014
Beantwortet: VBBV am 17 Dez. 2022
x = sym('x',[1 3]);
returns a vector-valued variable x=(x(1),..x(3)). I want each component to depend on the time, which for a scalar vaiebale I would get by
x = sym('x(t)');
I don't see a way to combine these two statements in order to obtain vector-valued variables where each component depends on the time.
I need this to calculate (total and partial) time derivatives of a function f(x(t)) where x=(x_1(t),..x_3(t))).
Thanks in advance.

Antworten (1)

VBBV
VBBV am 17 Dez. 2022
instead of using sym use syms for defining vector valued functions with multple variables, e.g. x and t
syms 'x(t)' [1 3]
x
x(t) = 

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by