Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はプロットを持っています:
t = 1:0.001:10; plot(t,t);
今、私は新しいプロットでどのポイントをクリックしたか知りたいです。これは可能ですか?
メソッドがあることは知っていますがget(0,'PointerLocation');、これにより絶対画面座標が得られます。
get(0,'PointerLocation');
関数[x,y] = ginput(n)(ここを参照) はおそらくあなたのニーズに合っています。
[x,y] = ginput(n)