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

조회 수: 1 (최근 30일)
Lilli
Lilli 2014년 6월 30일
답변: VBBV 2022년 12월 17일
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.

답변 (1개)

VBBV
VBBV 2022년 12월 17일
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) = 

카테고리

Help CenterFile Exchange에서 Conversion Between Symbolic and Numeric에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by