Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to be able to plot a 2d grid of points onto a parameter plane. I want to plot each of the points, but plot it in a different way depending on what result the parameters/co-ordinates of that point lead to. The general effect I'm looking for is a sort of map, where one can point to a place in the plot and say 'In this region of parameter space, we see X happening', like how a Pourbaix diagram works, but with more colour. Is there a fast and efficient way of doing this sort of grid plotting in octave?

share|improve this question
do you have an example where we can see what you want to achieve. like a picture or some of that sorts? – toxicate20 Nov 22 '12 at 11:56

1 Answer

up vote 0 down vote accepted

Without a specific example it's hard to give an exact answer but I think you just need to plot your grid with imagesc() and find an appropriate colormap.

share|improve this answer
That worked. I made this with it. – del42z Nov 24 '12 at 6:26

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.