custom axis at the imshow

120 visualizzazioni (ultimi 30 giorni)
José Anchieta de Jesus Filho
I am trying to add the axes in a capture made in software (as an example, I put this photo). My objective is to add the axes x = -15: 10: 15 and y = 0: 5: 20.
Let's say the figure is 1053 pixels wide and 571 pixels high. I am so grateful if anyone can help me.

Risposte (1)

Walter Roberson
Walter Roberson il 16 Apr 2021
Your tick marks are not linear in x or in y. On my monitor, the distance between the first -15 and 0 is close to 1 cm more than the distance between 0 and the second -15.
imshow() does not support nonlinear scales, so your implementation would have to be to figure out which linear positions corresponded to your desired ticks, and xtick() at the linear position, but use xticklabel() to lie about the position labels. If you needed datatips to agree with your labels, more work would have to be done to get datatips to lie for you.
This appears to be a magnetic field, so log scale is not appropriate -- magnetic fields are not symmetric on log scales.
  2 Commenti
Walter Roberson
Walter Roberson il 16 Apr 2021
If your scales were linear, I would recommend using image() instead of imshow()
image([-17 19], [1.75 20], YourImageArray)
The numbers I gave are my best estimates of the positions by measuring relative distances between ticks and edges independently for each side.
José Anchieta de Jesus Filho
Even so, I appreciate your dedication.

Accedi per commentare.

Categorie

Scopri di più su Display Image in Help Center e File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by