2
$\begingroup$

I have to make a simple plot using the Plot function. However on the $x$ axis I want the scale to be such that it initially shows a zoom up of $0$ to $1$, and then the scale compresses and shows from, say, $100$ to $10000$. How to achieve that? I have tried a lot of different functions including Zoom and Show, but none seem to work.

$\endgroup$
5
  • $\begingroup$ This seems to be a duplicate, see e.g. How does one set a logarithmic scale in a ContourPlot? $\endgroup$ Commented Mar 11, 2016 at 16:33
  • $\begingroup$ Thanks. That might work. However is there no other alternative method? $\endgroup$ Commented Mar 11, 2016 at 16:42
  • $\begingroup$ You could take a look at Generating a broken or snipped axis in ListPlot and solutions therein. Perhaps something could be adapted. $\endgroup$ Commented Mar 11, 2016 at 16:50
  • $\begingroup$ What happens between 1 and 100? $\endgroup$ Commented Mar 11, 2016 at 17:08
  • $\begingroup$ Welcome to Mathematica.SE! 1) As you receive help, try to give it too, by answering questions in your area of expertise. 2) Take the tour and check the help center! 3) When you see good questions and answers, vote them up by clicking the vote triangles, because the credibility of the system is based on the reputation gained by users sharing their knowledge. Also, please remember to accept the answer, if any, that solves your problem, by clicking the checkmark sign! $\endgroup$ Commented Mar 11, 2016 at 17:18

2 Answers 2

4
$\begingroup$

You can split your X interval into several subintervals and sample your function inside every interval with step proportional to current interval length. Then use ListPlot to show all sampled values and relabel X-axis ticks.

f[x_] := Sin[x] + 1.5; nPoints = 1000.0; edges = {0, 2 Pi, 10 Pi, 100 Pi}; intervals = Partition[#, 2, 1] &@edges; points = Flatten[ Range[#[[1]], #[[2]], (#[[2]] - #[[1]])/nPoints][[1 ;; -2]] & /@ intervals]; ticks = Transpose@{Range[1, Length@edges*nPoints, nPoints], edges}; Show[ListPlot[f[points], Ticks -> {ticks, Automatic}]] 

enter image description here

$\endgroup$
2
$\begingroup$

How about if you just use a simple Manipulate statement? For example:

Manipulate[Plot[x, {x, 0, a}], {a, {1, 100, 1000}}] 

That should work. Even more, you can choose the plot options according to your choice of a, that you can figure it out.

$\endgroup$
2
  • $\begingroup$ Thanks guys. LogLinearPlot worked fine for me. $\endgroup$ Commented Mar 12, 2016 at 5:14
  • $\begingroup$ @BudhadityaBhattacharjee .. interesting... how is a log scale a zoom in? But I'm glad you got what you wanted. $\endgroup$ Commented Mar 14, 2016 at 22:06

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.