Réponse apportée
[Appdesigner] Can I colour specific letters in label?
I have taken a look at properties of Label component, and it seems that it doesn't support such things. You can create uilabel c...

environ 5 ans il y a | 0

| A accepté

Réponse apportée
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...

environ 5 ans il y a | 0

| A accepté

Réponse apportée
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...

environ 5 ans il y a | 0

| A accepté

Réponse apportée
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...

environ 5 ans il y a | 0

Réponse apportée
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...

environ 5 ans il y a | 0

Réponse apportée
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...

environ 5 ans il y a | 0

Réponse apportée
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...

environ 5 ans il y a | 0

| A accepté

Réponse apportée
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...

environ 5 ans il y a | 1

Réponse apportée
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 = ...

environ 5 ans il y a | 0

Réponse apportée
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...

environ 5 ans il y a | 1

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

environ 5 ans il y a | 2

Réponse apportée
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...

environ 5 ans il y a | 0

| A accepté

Réponse apportée
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 ...

environ 5 ans il y a | 0

Réponse apportée
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...

environ 5 ans il y a | 1

| A accepté

Réponse apportée
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...

environ 5 ans il y a | 0

| A accepté

Réponse apportée
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,...

environ 5 ans il y a | 0

Réponse apportée
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...

environ 5 ans il y a | 0

Réponse apportée
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...

environ 5 ans il y a | 0

| A accepté

Réponse apportée
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...

environ 5 ans il y a | 0

| A accepté

Réponse apportée
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 ...

environ 5 ans il y a | 0

Réponse apportée
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...

environ 5 ans il y a | 0

Réponse apportée
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

environ 5 ans il y a | 0

| A accepté

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

environ 5 ans il y a | 0

Réponse apportée
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 ...

environ 5 ans il y a | 0

Réponse apportée
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...

environ 5 ans il y a | 0

Réponse apportée
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 ...

environ 5 ans il y a | 0

| A accepté

Réponse apportée
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 ...

environ 5 ans il y a | 0

| A accepté

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

environ 5 ans il y a | 0

| A accepté

Réponse apportée
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];

environ 5 ans il y a | 0

| A accepté

Réponse apportée
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...

environ 5 ans il y a | 0

Charger plus