First time here? Check out the FAQ!

Ask Your Question
1

Matrix-valued functions

asked 12 years ago

this post is marked as community wiki

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.

Preview: (hide)

1 Answer

Sort by » oldest newest most voted
0

answered 12 years ago

this post is marked as community wiki

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]
Preview: (hide)
link

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

Stats

Asked: 12 years ago

Seen: 1,538 times

Last updated: Oct 24 '12