
Allen
Statistics
RANK
422
of 257.955
REPUTATION
157
CONTRIBUTIONS
7 Questions
66 Answers
ANSWER ACCEPTANCE
57.14%
VOTES RECEIVED
23
RANK
6.881 of 17.779
REPUTATION
128
AVERAGE RATING
5.00
CONTRIBUTIONS
4 Files
DOWNLOADS
32
ALL TIME DOWNLOADS
592
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Content Feed
Submitted
DragDataTip
Creates draggable data tips with custom labeling options on most 2-D plots. Custom labels options can also be applied to standar...
1 dag ago | 25 downloads |

Submitted
LineVisible
Toggle visibility or delete plot objects by interacting with the item names displayed in a legend.
1 dag ago | 1 download |

Legend ItemHitFcn with multiple functionality using left- and right-mouse buttons
Simple detail overlooked in the legend ItemHitFcn callback documentation. 'alt' — Single-click right mouse button, both mouse b...
12 dagen ago | 0
| accepted
Question
Legend ItemHitFcn with multiple functionality using left- and right-mouse buttons
I use the legend ItemHitFcn frequently to toggle visiblity of specific lines, but would like to add a context menu to the legend...
13 dagen ago | 1 answer | 0
1
answerQuestion
Can the uiconfirm 'Cancel' response be used to directly stop the current callback?
I currently use the questdlg to solicit a user response, paired with an if-statement to stop callback execution. Below is a shor...
10 maanden ago | 1 answer | 0
1
answerSolved
Recaman Sequence - I
Recaman Sequence (A005132 - <http://oeis.org/A005132 - OEIS Link>) is defined as follow; seq(0) = 0; for n > 0, seq(n) ...
12 maanden ago
Solved
Breaking Out of the Matrix
Do you want to take the Red Pill, or the Blue Pill? If you take the Blue Pill, you will simply pass along to the next problem...
12 maanden ago
I have a data set (matrix), having three columns, How can I find if this dataset follows a specific pattern or any relation exists?
Take a look at how to use MATLAB's cross-correlation function, xcorr. Depending on what specifically you are trying to determine...
12 maanden ago | 0
Creating an XY Scatter plot with ActX
The below method works similar to calling invoke, but does not expressly call the invoke function. There are also a few addition...
12 maanden ago | 2
Remove unwanted data above the line
This can be accomplished using conditional indexing and reassigning values to the blue-line data. The following example assumes ...
12 maanden ago | 0
Findpeak from the graph in specific range
[pks, locs]= findpeaks((x2(90:120)),'Npeaks',1) In your above line of code, you are indexing x2 from elements 90 through 120 an...
12 maanden ago | 0
Dot indexing is not supported for variables of this type.
It appears that you are initializing a new variable M_ at the start of your code and by default it is just an empty double-class...
12 maanden ago | 0
Scanning a txt file
Mohamad, A solution to your question has been provided in an older thread. See the link below for more details. https://www.ma...
12 maanden ago | 0
Getting mean row vector from a cell array of row vectors of the same size
It is not entire clear to me what you are trying to average. However, if I am understanding correctly, the following example att...
12 maanden ago | 0
I want to save my figure in another path. Every time I used the command save figure it saved in Desktop how I can change it
If your filename does not indicate the filepath in front of the filename, then MATLAB used your default directory location to sa...
12 maanden ago | 0
| accepted
Passing input variables from .txt or .xlsx or .csv into MATLAB Standalone Application
Kevin, One approach would be to create a pushbutton object with a callback to browse and import data. The following callback ex...
12 maanden ago | 0
| accepted
Dynamically adding to an excel sheet
It looks like your issue using the append feature has to do with your data being a table. Try using writematrix with your data a...
12 maanden ago | 0
How do I convert this string to a date ?
Try running a string replacement to remove "T" and "Z" from your string before reformatting to datetime. str = "2021-05-11T14:1...
12 maanden ago | 0
Array idx bug when resizing it
Ciro, It has to do with the way that the length function works. It will find and return the largest dimension in a 2-D array. S...
12 maanden ago | 1
| accepted
App Designer Tab Duplicated with properties
MATLAB requires that you manually create a callback for each object in App Designer. I say manually, but this is simply done by ...
12 maanden ago | 0
Reading csv files ignoring header info and text in between
Iroquois, The line numbers that you are referencing do not quite match up with your descriptions, and is making your needs a bi...
12 maanden ago | 0
| accepted
Question
Launch a custom App Designer application when opening a file.
I am looking for a way to program my data files, that I generate and save via a custom App Designer application, in such a way t...
12 maanden ago | 0 answers | 0
0
answersQuestion
Uitable editable cells not updating at first key value
I have a uitable setup that allows the user to enter values in one of its columns. However, the issue is that MATLAB appears to ...
ongeveer een jaar ago | 1 answer | 0
1
answerAddition of 2 matrices with different dimensions
In this instance your are describing, MATLAB is assuming element-wise addition between the rows and columns. Where Where, x = ...
ongeveer een jaar ago | 1
| accepted
How do I get a function in a for loop so it applies it to an entire table?
A relatively general approach to extract max values by year for each table variable (stations in this case) assuming the first v...
ongeveer een jaar ago | 0
Solved
Is the Point in a Triangle?
Check whether a point or multiple points is/are in a triangle with three corners Points = [x, y]; Triangle = [x1, y1; x...
ongeveer een jaar ago
Solved
Height of a right-angled triangle
Given numbers a, b and c, find the height of the right angled triangle with sides a and b and hypotenuse c, for the base c. If a...
ongeveer een jaar ago
Solved
Find the sides of an isosceles triangle when given its area and height from its base to apex
Find the sides of an isosceles triangle when given its area and the height from its base to apex. For example, with A=12 and ...
ongeveer een jaar ago
Solved
Can we make a triangle?
Given three positive number, check whether a triangle can be made with these sides length or not. remember that in a triangle su...
ongeveer een jaar ago
Add vectors in loop
I am certain that there is a much better method using vectorized indexing, but without seeing an example of the values in TimeSe...
ongeveer een jaar ago | 0
| accepted