Hi all,
I am plotting a 3d surface but at the axis scientific notation works
but I can not see the exponential part at the end of the axis.
I mean it does simplifies
      9.9*e^5 15*e^5 ...
to
      9.9   15
but there is no e^5 at the end of the axis that you need to multiply each
value
I am tired of manually adding that to the plots. How can I automatically add
the divider to the top of each axis.
Thank you in advance
-Burak

Here is the code


      formatter = ScalarFormatter(useMathText=True, useOffset=True)
      formatter.set_scientific(True)

      fig = plt.figure(figsize=(21,9.5))
      ax = fig.add_subplot(1,2,1, projection='3d', azim=180)
      ax.set_xlabel('Doppler')
      ax.set_ylabel('Delay')
      ax.set_zlabel('')

      ax.w_xaxis.set_major_formatter(formatter)
      ax.w_yaxis.set_major_formatter(formatter)
------------------------------------------------------------------------------
Increase Visibility of Your 3D Game App & Earn a Chance To Win $500!
Tap into the largest installed PC base & get more eyes on your game by
optimizing for Intel(R) Graphics Technology. Get started today with the
Intel(R) Software Partner Program. Five $500 cash prizes are up for grabs.
http://p.sf.net/sfu/intelisp-dev2dev
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to