On 3 mar, 18:55, Vincent D <20100.delecr...@gmail.com> wrote:
<...>
> We also start a wiki at http://sagemat-edu.fr
<...>
Bonjour,
( Compte tenu de la nature du message du posteur original, je ne crois
pas contrevenir à la netiquette en répondant en français, malgré que
ce soit un forum anglais.
Does anyone have any recommendations for an undergraduate Fourier analysis
book? In particular, does anyone know of any open-source or affordable books
that could naturally incorporate Sage? I'm asking for a colleague of mine.
(The prerequisite for the course is Calculus II, but most of the s
On Wed, Mar 24, 2010 at 6:14 PM, Dana Ernst wrote:
> Does anyone have any recommendations for an undergraduate Fourier analysis
> book?
> In particular, does anyone know of any open-source or affordable books that
> could
> naturally incorporate Sage? I'm asking for a colleague of mine. (The
OK, I use SAGE in my teaching a lot now. Its great for algebra, trig,
precalc, plots in 2D and 3D, limits, derivatives and integrals both
analytic and numerical.
There's only one thing holding me back from using SAGE exclusively. I
come from the MATLAB/Octave world and miss the matrix paradi
On 03/24/2010 06:41 PM, calcp...@aol.com wrote:
OK, I use SAGE in my teaching a lot now. Its great for algebra, trig,
precalc, plots in 2D and 3D, limits, derivatives and integrals both
analytic and numerical.
There's only one thing holding me back from using SAGE exclusively. I
come from t
On 03/24/2010 07:03 PM, Jason Grout wrote:
On 03/24/2010 06:41 PM, calcp...@aol.com wrote:
OK, I use SAGE in my teaching a lot now. Its great for algebra,
trig, precalc, plots in 2D and 3D, limits, derivatives and integrals
both analytic and numerical.
There's only one thing holding me back
You can use
sage: v = vector([1,2,3])
sage: w = vector([1,1,-4])
sage: w.dot_product(v)
-9
sage: w.norm()
3*sqrt(2)
etc. Just see http://www.sagemath.org/doc/tutorial/tour_linalg.html
for more examples.
On Wed, Mar 24, 2010 at 7:41 PM, wrote:
> OK, I use SAGE in my teaching a lot now. Its gr
On Wed, 24 Mar 2010 at 06:29PM -0400, David Joyner wrote:
> On Wed, Mar 24, 2010 at 6:14 PM, Dana Ernst wrote:
> > Does anyone have any recommendations for an undergraduate Fourier
> > analysis book? In particular, does anyone know of any open-source or
> > affordable books that could naturally in
On 03/24/2010 07:09 PM, David Joyner wrote:
You can use
sage: v = vector([1,2,3])
sage: w = vector([1,1,-4])
sage: w.dot_product(v)
-9
Even easier is w*v (which defaults to the dot product for vectors).
Jason
--
You received this message because you are subscribed to the Google Groups
"
On Wed, Mar 24, 2010 at 8:36 PM, Dan Drake wrote:
> On Wed, 24 Mar 2010 at 06:29PM -0400, David Joyner wrote:
>> On Wed, Mar 24, 2010 at 6:14 PM, Dana Ernst wrote:
>> > Does anyone have any recommendations for an undergraduate Fourier
>> > analysis book? In particular, does anyone know of any ope
Well, that was easy! So are these SAGE objects that you have to
construct? Its not clear where this code comes from. Is it a python
object, is it from maxima, gap, what?
Still, these constructs do not preserve the matrix paradigm from
MATLAB. For example, in MATLAB you can pass a matrix as
Jorge,
vector and matrix objects as described here are Sage constructions.
Behind the scenes different packages might do the computations (such
as numpy).
I don't know MATLAB, but here's a way to square every entry of a
matrix ("process the data"). Might be an easier way that I don't
know.
sage
On 03/24/2010 10:05 PM, calcp...@aol.com wrote:
Well, that was easy! So are these SAGE objects that you have to
construct?
Yes.
Its not clear where this code comes from. Is it a python object, is
it from maxima, gap, what?
Python/Sage.
Still, these constructs do not preserve the matr
On 03/24/2010 06:41 PM, calcp...@aol.com wrote:
OK, I use SAGE in my teaching a lot now. Its great for algebra, trig,
precalc, plots in 2D and 3D, limits, derivatives and integrals both
analytic and numerical.
There's only one thing holding me back from using SAGE exclusively. I
come from t
Jason,
On Mar 24, 9:26 pm, Jason Grout wrote:
> Scipy/numpy is much closer to MATLAB in that respect. You can't do
> sin(m) (where m is a matrix) meaningfully in Sage yet. In scipy/numpy,
> it would give you the sin of each element.
Is there a way to do something like m.map(sin)? Should ther
On 03/24/2010 11:42 PM, Rob Beezer wrote:
Jason,
On Mar 24, 9:26 pm, Jason Grout wrote:
Scipy/numpy is much closer to MATLAB in that respect. You can't do
sin(m) (where m is a matrix) meaningfully in Sage yet. In scipy/numpy,
it would give you the sin of each element.
Is there a w
> m.apply_map(), I believe off-hand.
That's it. Not sure why I didn't see that. Sorry for the noise.
Thanks,
Rob
--
You received this message because you are subscribed to the Google Groups
"sage-edu" group.
To post to this group, send email to sage-...@googlegroups.com.
To unsubscribe from
17 matches
Mail list logo