Al momento, stai seguendo questo contributo
- Vedrai gli aggiornamenti nel tuo feed del contenuto seguito
- Potresti ricevere delle email a seconda delle tue preferenze per le comunicazioni
MYGINPUT Graphical input from mouse with custum cursor pointer.
[X,Y] = MYGINPUT(N) gets N points from the current axes and returns the X- and Y-coordinates in length N vectors X and Y.
[X,Y] = MYGINPUT(N, POINTER) also specifies the cursor pointer, e.g. 'crosshair', 'arrow', 'circle' etc. See "Specifying the Figure Pointer" in Matlab's documentation to see the list of available pointers.
MYGINPUT is strictly equivalent to Matlab's original GINPUT, except that a second argument specifies the cursor pointer instead of the default 'fullcrosshair' pointer.
Example:
plot(1:2,1:2,'s');
hold on
[x,y] = myginput(1,'crosshair');
plot(x,y,'o');
hold off
MYGINPUT is copied from Matlab's GINPUT rev. 5.32.4.4.
Cita come
Frederic Moisy (2026). MYGINPUT (https://it.mathworks.com/matlabcentral/fileexchange/12770-myginput), MATLAB Central File Exchange. Recuperato .
Riconoscimenti
Ispirato: gdist, Perceptron InterActive, clickfit_OH for curve fitting by eye/hand
Informazioni generali
- Versione 1.0.0.1 (3,08 KB)
Compatibilità della release di MATLAB
- Compatibile con qualsiasi release
Compatibilità della piattaforma
- Windows
- macOS
- Linux
