|
[Date Index]
[Thread Index]
[Author Index]
Re: Mathematica 7 - Miscellaneous`RealOnly`
- To: mathgroup at smc.vnet.net
- Subject: [mg99810] Re: [mg99793] Mathematica 7 - Miscellaneous`RealOnly`
- From: Bob Hanlon <hanlonr at cox.net>
- Date: Fri, 15 May 2009 04:18:21 -0400 (EDT)
- Reply-to: hanlonr at cox.net
Clear[f];
f[x_] = x^(1/3);
Plot[Sign[x] Abs[f[x]], {x, -10, 10}]
However, if this graph represents the function that you want, then the function definition should be similar to
Clear[f];
f[x_] = Sign[x] Abs[x]^(1/3);
Plot[f[x], {x, -10, 10}]
Bob Hanlon
---- lwapner2 at gmail.com wrote:
=============
The above package no longer exists in Mathematica 7 and must be
downloaded. Then to use the feature it seems there must be additional
code entered to turn off certain warnings. It's an annoyance. When
graphing functions such as f(x) = x^(1/3) is there a workaround to get
the full graph, -inf<x<inf?
Prev by Date:
saving initialization cells as a .m file
Next by Date:
unrecognized USB devices
Previous by thread:
Re: Mathematica 7 - Miscellaneous`RealOnly`
Next by thread:
first and second simple problems
|