I load a data file and plot it in octave. But in the plot, I want to mark the periodic appearance of points on the plot. I used ginput() function for marking. But the problem I see is, if I mark a different point which was not supposed to mark and then immediately realise that i made mistake, now I want to delete my last marked point and then mark the correct point. I'm not able to do it. I found out that there is MATLAB function getpts() which does the same but octave version of getpts() is not there. Can anyone help me out please? Example: The sequence i want to mark is 1,2,3,4,5,6,7,8,9,10. But accidently I mark 1,2,3,5 And realise that I did a mistake and then press delete button on the keyboard which deletes 5 and then I mark 4 and then 5.
Is there any function for getpts() of MATLAB in Octave?
496 views Asked by kalingabhat At
1
There are 1 answers
Related Questions in MATLAB
- Convert Cell Array of Symbolic Functions to Double Array of Symbolic Functions MATLAB
- How to restrict vpasolve() to only integer solutions (MATLAB)
- "Error in port widths or dimensions" while producting 27
- matlab has encountered an internal problem needs to close
- Minimize the sum of squared errors between the experimental and predicted data in order to estimate two optimum parameters by using matlab
- Solve equation with Crank Nicolson and Newton iterative method in Matlab
- Why options are not available in EEGLAB menu options?
- ash: ./MathWorksProductInstaller: not found, but file exists
- iterative GA optimization algorithm
- Create Symbolic Function from Double Vector MATLAB
- Fixing FEA Model loading with correct units and stress results
- loading variables from a python script in matlab
- Why cannot I set font of `xlabel` in `plotmf` in MATLAB?
- How would I go about filtering non-standardly formatted serial data which contains some junk binary between data entries?
- Cyclic Voltammetry Simmulation in MATLAB, I am running into issues with my data points returning as NaN values, i am a beginner, any help wanted
Related Questions in GNUPLOT
- gnuplot heatmap z-value data does not match color bar range
- Gnu plot plotting box plot with error bar
- gnuplot 3D: How do I emphasize z-values along a constant x- (or y-) value line?
- Gnuplot: get disabled plots in script
- Binary grid data for splot command in gnuplot
- With gnuplot, how to plot a vector (i.e. 1xN or Nx1 matrix) as image?
- How to Color the Area Above the Curve in Gnuplot?
- There are a lot of blank areas in the image generated by using gnuplot
- How can I fit data to a Lennard-Jones potential in Gnuplot?
- How to fit data to a Lennard-Jones potential in Gnuplot
- gnuplot date in x axis - all points y value undefined
- Gnuplot: ramdom but deterministic color palette
- Gnuplot complain with ')' expected when array is not defined at specific line
- Correct xtics and keys with columnstacked histograms from CSV (Gnuplot)
- Increasing the ytics step relatively
Related Questions in OCTAVE
- How to make faster vecnorm to a 3D array
- Why am I unable to properly combine these figures?
- How do I get rid of unnecessary information in the Octave command line?
- Iterating the rms-function through numbered variables
- Create non blocking sockets in Octave
- Parse error not understandable in this code
- Octave GUI 8.4.0 starts always with powershell window (Windows 11, Admin rights)
- Octave: Boolean AND returns wrong number
- Zooming in/out on subplots in Octave
- Creating a density plot out of a large matrix in octave
- control arrowhead in Octave phasor plot
- Error installing package in Octave Portable on Windows 10
- Difference between these two cell array syntaxes?
- octave-cli 8.4.0 does not recognize qt graphics toolkit
- warning: function name 'newsqrt' does not agree with function filename '/tmp/main.m' in Octave
Related Questions in GINPUT
- Is there a way to track the number of clicks made when using matplotlib's ginput() function?
- Matplotlib.pyplot.ginput() in Python
- Error while running python ginplut command
- Matplotlib.pyplot.ginput(): get two y-values for one x-value from two-line plot
- ginput from matplotlib in JupyterLab does not work
- why does global in a class behave differently when the class is within a function?
- Plot window won't close when using ginput?
- prevent matplotlib ginput registering click on widget button
- Get subplot number from Ginputc the same way than Ginput (answer with faster Ginput)
- collect mouse click location with matplotlib ginput and draw vertical line through location
- pyplot figure only updating after second call to ginput()
- Why is my ginput code not working in python?
- Matplotlib draw Figures during ginput()
- python Ginput working in spyder but not working from terminal or command window
- Is there any function for getpts() of MATLAB in Octave?
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Popular Tags
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
While getpts is not implemented per se, producing a small function which gets inputs one by one via ginput and vets them to get the desired behaviour is fairly easy. E.g.
This is a very flexible approach which allows you to modify and add functionality as you desire (e.g., add different markers based on specific key pressed, plot as you go, etc).