I want to plot the magnitude of the values of a certain function with complex arguments. Thus, I created two LinRanges (for real and imaginary part) and fed the function with it to obtain a matrix.
Now I plotted the function with a heatmap.
Problem: the label of the xaxis and yaxis are from 1:size(LinRange,1) (in my example i.e. 1:100) but I want them to run from the actual values, i.e. e.g.
x-axis: [0.01,5] (real part of the argument)
y-axis: [-0.01,-0.3] (imaginary part of the argument)
I guess I somehow had to rescale the axes in a certain manner but I cannot find which command does the trick. Could anyone pls help me out?