Answered
How to perform Hot Spot Detection ?
There's no equivalent code in AppDesigner, if you just open it and do few examples there, you'll figure out what to do. I made s...

5 years ago | 0

| accepted

Answered
Unable to add text to Column/cell of table in AppDesigner.
Hi, You can edit the table by setting the ColumnEditable property to true. See this link. The error happens because, the varia...

5 years ago | 0

| accepted

Answered
App Designer Drop Down to load excel data
If you use readtable on your file, you'll get a nice table already prepared with the data. After you import, check if your numbe...

5 years ago | 0

Answered
Warning in hold and legend commands in appdesigner
I think this happens when you use UIFigure or regular Figure that doesn't exist as the Component in the app. What is app.Ant_Pat...

5 years ago | 0

Answered
Creating an app which plots from imported .csv
Hello, You can create a CellSelectionFcn callback for your UITable component. If you click on the column while holding the cont...

5 years ago | 0

Answered
Can I make money with the Trading Toolbox?
Simply said, no. Home license does not allow any financial gains. Edit: Actually, the best is to contact support, as Steven men...

5 years ago | 0

| accepted

Answered
Export menu bar tab in pdf with app designer
Hello, You can change the tabs programmatically by GroupTab property SelectedTab, afterwards you can use the exportapp UITabGr...

5 years ago | 1

Answered
Array inside an array
Hi, You can do this with cell arrays a =cell(3,1); b = rand(3,1) b = 0.8147 0.9058 0.1270 a{1} = b a = ...

5 years ago | 0

Answered
Sorting array and accessing its data
MATLAB Onramp will get you covered on basics of MATLAB. To get the value you asked for, use this X(8) The vector B holds the...

5 years ago | 1

Answered
Calling a Script within another script?
Enclose your script name in quotation marks. Edit: with the file extension. run("ohm.m")

5 years ago | 2

Answered
How to execute a print command for the MATLAB Web Broser from the command line
Hello, I found two ways of doing so, the first one is not great because it is not documented, and this may not be working in ne...

5 years ago | 0

| accepted

Answered
Convert some columns in 'double array' to single digit, rest as bank and then put in UITable
Hello, Issue in your code is on this line. You asked for the number with 0 decimals, replace 0 with how many decimals you want ...

5 years ago | 0

Answered
Convert 1x1 cell to 1x1 double
Hi, depending on the contents in the cell array, here are two examples. Mind the indexing into cell, you should use curly bracke...

5 years ago | 1

| accepted

Answered
Is there a way to create exe for GUI created using app designer in MATLAB.
To create an executable app, see Share - Create Desktop App, under Designer Tab. To run the .exe, user must have installed MATLA...

5 years ago | 0

| accepted

Answered
App Designer | error when trying to make one logical cell equal another
Hey Connor, When you assign data to UITable component, it'll remain the same variable type as original variable had. Therefore,...

5 years ago | 0

Answered
how to reset drop down list(go to first option) when pushing any other button in App designer
You have to add callback to every 'any other button' component that'll reset it. app.NameOfComponentDropDown.Value = app.NameO...

5 years ago | 0

Answered
Read text file from function
Hi again, here's a script that processes the input files. There are two parameters missing n, Ne. Implement these and convert t...

5 years ago | 0

| accepted

Answered
Appdesigner uicontrol position and resize
Hi Christophe, If you're using App Designer app, most of the content (if not all) in the uifigure will be resized when the uifi...

5 years ago | 0

| accepted

Answered
How to use if else for terms
Hello, Apart from code which is not friendly to read, here's explanation: if S_1 > 350 % if S_1 is bigger than 350 V_2 ...

5 years ago | 0

Answered
Import Matlab Projects archive
Hi Robin, I don't think that there's such functionality, at least for now. Meanwhile, you can open the project archive by using...

5 years ago | 0

Answered
How to get WindowButtonMotionFcn to track mouse position
Here's the question that'll help you, there are more two relevant answers to it. Link

5 years ago | 0

| accepted

Answered
How to count the number of times that values changes?
Hello, This should do the trick. B = [NaN; cumsum(diff(A) ~= 0)]';

5 years ago | 0

Answered
Display is too small
It looks like your font is too small. You can also change the output location (small three icons on the top right corner). See ...

5 years ago | 0

Answered
How to clear the value from a numeric or text edit field on Matlab App Designer?
Hello, All looks good, except double equal marks, you can create a (helper) function that would do that function ClearFields(a...

5 years ago | 0

Answered
Can I use arrows to move Data Tips on scatter plots?
Hi David, Edit: I have updated the code and it works. It's better if the callback is on KeyPressFcn, especially for plots with ...

5 years ago | 0

| accepted

Answered
How can i understand the meaning of "colors(rgb_label ~= k) = 0;" code meaning?
Hi, Line below returns the logical array for the condition: rgb_label is not equal to k rgb_label ~= k Line below takes that ...

5 years ago | 0

| accepted

Answered
How to find value from vector
This will do it findVal = 0.03; [~, valIndex] = min(abs(table_gammadot - findVal)); eta = table_eta(valIndex)

5 years ago | 0

| accepted

Answered
Update candle plot with additional candle
If you save the handle to the plot, you can access its Data property h = candle(ax, someData) h.Data(end+1) = [1 2 3 4];

5 years ago | 0

| accepted

Answered
How can I get a certain paragraph from a url?
Here's a link from Stuart's blog post that will give you an idea what to do and how to look for information on websites. This on...

5 years ago | 0

Answered
Realtime data from motor controller
Hey Christian, It would be the best if you'd do few introductory examples in App Designer and you'll get an idea how to do you...

5 years ago | 0

| accepted

Load more