Placing images on a cartesian plot
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Sri Adiyanti
am 12 Mär. 2021
Kommentiert: Sri Adiyanti
am 14 Mär. 2021
Hi there,
I have a series images (.png) outputed from a matlab plotting script based on different sets of parameters.
I need to place all images on a cartesian plot, where X and Y represent the ratios of parameters.
My question is, what function in matlab that I can use to place those images in (x,y) coordinate, such as: plot (x,y, "image1.png")?
Thanks
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 12 Mär. 2021
imread() into an array. image() the array.
image(Axeshandle, X, Y, ImageArray
X and Y are each coordinate vectors giving the left and right (X) and lower and upper (Y) data coordinates to use. The values should describe where to put the centers of the pixels.
4 Kommentare
Weitere Antworten (0)
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!