Plot X-axis Log & Y-Axis Linear with Mathematica LogPlot

  • Context: Mathematica 
  • Thread starter Thread starter bgaetano
  • Start date Start date
  • Tags Tags
    Log Mathematica Plot
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
2 replies · 25K views
bgaetano
Messages
1
Reaction score
0
I am a new user of Mathematica software, and need to plot a quite complicate function using a semi-Log type plot. The function that the software provides is LogPlot however this function plots the Y axis in Log scale and the X in linear scale, but I need the exact opposite, to plot the X axis in the Log and Y in linear. Does anybody know how to deal this plot within Mathematica ?

Thank's a lot

Nino
 
Physics news on Phys.org
Code:
ParametricPlot[{Log[t],f[t]},{t,0,3}]
 
Last edited:
Try LogLinearPlot[]