Info
この質問は閉じられています。 編集または回答するには再度開いてください。
How much axes should I create on one figure window in matlab R2015b ?
1 回表示 (過去 30 日間)
古いコメントを表示
Dear Sir, I am created one programmatic gui in matlab where I created icons using image function and using callback for them. Also I have one sliding image panel where I am showing multiple images on panel using axe
s. It has one logic by using I'm sliding the panel i.e. providing new position on every click. But I,m not able to create more than 25 axis on that panel.
7 件のコメント
Walter Roberson
2016 年 1 月 1 日
If you create a uipanel that is set to clipping then you can move a second panel within the first to get the impression of sliding.
Image Analyst
2016 年 1 月 1 日
Ah, that makes sense. It wasn't clear to me that he had two panels, one inside the other.
回答 (2 件)
Image Analyst
2015 年 12 月 12 日
Try issuing a drawnow command. Or else try a different renderer for your figure. Or else make your axes smaller.
2 件のコメント
Image Analyst
2015 年 12 月 16 日
You could possibly keep track of which axes are visible and then clear the images from the invisible ones with cla('reset').
Sean de Wolski
2015 年 12 月 31 日
Why not create one axes with lots of images horizontally concatenated together? Then all you have to do is update the 'CData' of the one image object in order to scroll. You can keep track of where each subimage is to know it's start and end horizontal position if there needs to be clicking.
This is how I'd do it at least.
0 件のコメント
この質問は閉じられています。
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!