Community Profile

photo

Arpit Agarwal


Active since 2014

Followers: 0   Following: 0

Message

Statistics

  • Thankful Level 1

View badges

Feeds

View by

Question


How do I add initial conditions in dsolve while solving a system of ODEs in matrix form?
Here's a simple code syms x(t) y(t) A = [1 2; -1 1]; B = [1; t]; Y = [x; y]; S = dsolve(diff(Y) == A*Y + B); ...

10 years ago | 1 answer | 0

1

answer

Question


How can I define an array of symbolic functions?
I want to make an array a1(t) a2(t)... an(t). syms a(t) creates a symbolic parameter 't' and 'a' which is an unknown func...

10 years ago | 1 answer | 1

1

answer