Re: [Matplotlib-users] changing axes of contour plot

2008-09-23 Thread Matthias Michler
Hi, I'm not an expert, but I got the attached script to do what you need ( at least as I understand it). It isn't quite nice, because I need interactive mode turned on for proper value in the xtick labels in order to modify them. Maybe it is a kind of beginning for a good solution or maybe a pr

[Matplotlib-users] changing axes of contour plot

2008-09-12 Thread johnny_c
Hi, I have a contour plot with a log scale on the x and y axes and I would like it to read "10^1 10^2 10^3 10^4". How would I go about doing this? Here's how I'm currently making the plot.. contour( log10(x), log10(y), z ) This only displays something like "0 1 2 3 4". Any suggestions?