Opened 8 years ago
Last modified 3 years ago
#11507 new enhancement
make f(x,y,z)=vector make a vector-valued function
Reported by: | jason | Owned by: | burcin |
---|---|---|---|
Priority: | major | Milestone: | sage-6.4 |
Component: | symbolics | Keywords: | |
Cc: | kcrisman, jvkersch, mforets | Merged in: | |
Authors: | Reviewers: | ||
Report Upstream: | N/A | Work issues: | |
Branch: | Commit: | ||
Dependencies: | Stopgaps: |
Description
Currently this makes a vector over callable symbolic expressions: f(x,y,z)=(x^2,y^2,x*z*y)
. But this doesn't work: f(x,y,z)=vector([x^2,y^2,x*z*y])
. This means that it's painful to do calculations on symbolic vectors and easily make new vector valued functions.
Change History (8)
comment:1 Changed 8 years ago by
comment:2 Changed 8 years ago by
They are related, but different, I think. #11180 is about allow the f
in the description to take a vector as an input; this one is about creating a new function using a vector. Best to keep them separate.
comment:4 Changed 6 years ago by
- Milestone changed from sage-5.11 to sage-5.12
comment:5 Changed 6 years ago by
- Milestone changed from sage-6.1 to sage-6.2
comment:6 Changed 6 years ago by
- Milestone changed from sage-6.2 to sage-6.3
comment:7 Changed 5 years ago by
- Milestone changed from sage-6.3 to sage-6.4
comment:8 Changed 3 years ago by
- Cc mforets added
Note: See
TracTickets for help on using
tickets.
How does this relate to #11180?