Mathematica Plotting Functions in Mathematica: A Simple Guide

  • Thread starter Thread starter clanijos
  • Start date Start date
  • Tags Tags
    Mathematica
AI Thread Summary
To plot functions in Mathematica, the command used is Plot[x^2, {x, -3, 3}], which allows users to define the function and the range for the x-axis. For additional help, users can access the documentation by pressing <f1> and searching for "Plot" or related keywords. It's crucial to pay attention to syntax details in Mathematica, such as the correct use of brackets and operators, as errors can lead to confusing messages. A user expressed interest in a plotting feature similar to LogPlot but with the ability to customize the x-axis scale using a different function. The discussion highlights the challenge of compressing the x-axis scale without using a logarithmic approach, suggesting that manual adjustments and relabeling may be necessary after plotting. The conversation emphasizes the need for clarity regarding the specific functions and plots desired.
clanijos
Messages
27
Reaction score
0
Could someone tell me how I would go about plotting a function in Mathematica over say, x^2? or sqrt(x)?

Thanks!
 
Physics news on Phys.org
clanijos said:
Could someone tell me how I would go about plotting a function in Mathematica over say, x^2? or sqrt(x)?

Perhaps more appropriate posted here:

https://www.physicsforums.com/forumdisplay.php?f=189

To do this use

Plot[x^2,{x,-3,3}]

which is documented here

http://reference.wolfram.com/mathematica/ref/Plot.html

or when you are running the software hit <f1> and when the help browser pops up type in Plot or any other likely keyword you want documentation on.

Mathematica is fanatic about exact use of {} versus [] versus (), := versus = versus == versus even === and correct capitalization. Make an error in anyone of those and you will get possibly incomprehensible error messages.
 
Thanks!

Edit: Gah, replied before I really looked over what you said! Yeah, I know how I should go about plotting a function like that. What I am looking for is something similar to LogPlot, but where the scale of the x-axis can be changed to another function.
 
Last edited:
clanijos said:
What I am looking for is something similar to LogPlot, but where the scale of the x-axis can be changed to another function.
You want to compress the scale on the x-axis, but not logarithmically? It's difficult to see why you might want to do that. I think you would have to do the compression yourself and then re-label the axis after the computer has done the plotting.

Exactly what are you wanting to plot?
 

Similar threads

Replies
2
Views
2K
Replies
4
Views
1K
Replies
5
Views
3K
Replies
1
Views
3K
Replies
1
Views
2K
Replies
4
Views
3K
Back
Top