Matrix-valued functions
I'm looking for a good way to define matrix valued functions.
A function defined as (x1,x2...xn) -----> M(x1,x2....xn), where M is a mxm matrix.
Thanks.
asked 12 years ago
This post is a wiki. Anyone with karma >750 is welcome to improve it.
I'm looking for a good way to define matrix valued functions.
A function defined as (x1,x2...xn) -----> M(x1,x2....xn), where M is a mxm matrix.
Thanks.
answered 12 years ago
This post is a wiki. Anyone with karma >750 is welcome to improve it.
Why not this way?
sage: def f(x,y):
....: return matrix([[x,y],[x^2,y^2]])
....:
sage: f(1,2)
[1 2]
[1 4]
Please start posting anonymously - your entry will be published after you log in or create a new account.
Asked: 12 years ago
Seen: 1,538 times
Last updated: Oct 24 '12