1

I need to produce some plots that look like these but I'm not sure what they are called in mathematica, can anyone identify them ?

picture

Update: I want to plot triples of the form (xvalue, yvalue, intensity) in a graph like that

cormullion
  • 24,243
  • 4
  • 64
  • 133
  • Try DensityPlot! – PlatoManiac Mar 27 '13 at 15:17
  • DensityPlot appears to be for plotting functions, I have triples that I want to plot corresponding to (xvalue, yvalue, intensity)

    Is there a function for doing this ?

    – Aaron Kalair Mar 27 '13 at 15:24
  • It's probably ArrayPlot. There's also MatrixPlot, Image, Graphics[Raster[...]], and ListDensityPlot (which can interpolate). For triples you need ListDensityPlot or see this – Szabolcs Mar 27 '13 at 15:26

1 Answers1

1

It might be ListDensityPlot with an InterpolationOrder of 0 and a black/white ColorFunction

https://i.stack.imgur.com/pa96b.jpg

struct
  • 111
  • 2