Mathematica: How to change units od axis

Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
2 replies · 3K views
brunoxy1
Messages
2
Reaction score
0
Hello,

I would like to know, how can I change units showed in axis. I would like to change those relative units (20000, 40000...) to μm. The conversional relation is 50 = 1μm, so instead 20000, 40000 i would like to have 400μm, 800μm. I enclose picture where it should be more clear what I am trying to achieve.

Thank you very much for your help
 

Attachments

  • impression mark.jpg
    impression mark.jpg
    23.3 KB · Views: 613
Physics news on Phys.org
You can set thick manually:
e.g.

Code:
Plot3D[Sin[(x y)/10], {x, 0, 100 Pi}, {y, 0, 100 Pi}, 
Ticks -> {{{0, "o"}, {100, "1m"}, {200, "2m"}, {300, "3m"}}, 
       {0, 100 Pi/2, 100 Pi}, {{-1, "A"}, {0, "B"}, {1, "C"}}}]
 
I did that, I found out yesterday:)