Respondida
Indexing through a structure to get subsets of data with no looping
Look... why you don't want to use a loop?! It's something that you can't avoid sometimes. The result you are looking for is weir...

más de 1 año hace | 0

| aceptada

Respondida
AppDesigner : divided UI code in several .mlapp files
No, it's not possible. But you can use uitabgroup to deal with it.

más de 1 año hace | 0

Respondida
Make the dropdown already scrolled down to the bottom in app
It's an old question, but maybe this answer helps someone. I don't know which version of Matlab you used, but I just tested in R...

más de 1 año hace | 0

Respondida
Issue running my own standalone app
It's an old question, but the answer could help someone. I had the same problem with a standalone app that was installed in more...

más de 1 año hace | 0

Respondida
How can I draw a polar dendrogram over UIAxes in AppDesigner?
Hey @Mohammad Shahbazy, I know that is an old question, but... maybe the answer help others. :) dendrogram only works with old ...

más de 1 año hace | 0

| aceptada

Respondida
Using the fields of a structure to index through a vector and generate a resulting structure
Hey @Scorp, structfun is the answer for your issue! :) dataArray = [21,22,23,24,25,26,27,28,29,30]; structureOfIndexes.a1 = [2...

más de 1 año hace | 0

| aceptada

Respondida
How can I properly create an standalone APP which includes python .py scripts?
Look... pyenv will give you the Python environment used to call your .py files. Ok. But... when you run a standalone version of ...

más de 1 año hace | 0

Respondida
Extract data from UIAxes in AppDesigner
If you are using lines, you just have to call "XData", "YData" and "ZData" of your uiaxes's childrens. For example: >> plot(app...

más de 1 año hace | 1

Respondida
How can I use html in UItable for draw line??
uitable doesn't have a html interpreter. So... below is my approach to this issue. app.UITable.Data = table(["–––––o–––––"; "––...

más de 1 año hace | 2

| aceptada

Respondida
UITabGroup titles are clipped
Hey @Dominik Lechleitner, it's not possible, but at the end of the day, why are you trying to do that? Let's do something more b...

más de 1 año hace | 0

Respondida
How can I move legend in app designer?
Hi @galaxy, just create a handle for your legend. See code attached made on R2021b (if you are working on a different release of...

más de 1 año hace | 0

Respondida
In appdesigner, is there any way to start with 2x1 panels instead 1x2 under auto-reflow?
Hey @Maruan Alberto Bracci, yeah. It's possible. In this template there is as Grid between the UIFigure and the Panels,, but the...

más de 1 año hace | 0

Respondida
app designer: how to index through multiple UIAxes
Hey... just put in the startup of your app the code below. app.plotHandles = findall(app.UIFigure, 'Type', 'axes');

más de 1 año hace | 0

Respondida
Alternative to Using UITable to Display Tables in App Designer
You must use uitable instead of openvar in this "App Designer world". In this world, openvar is going to be useful in debug mode...

más de 1 año hace | 0

Respondida
How do I get the values from workspace to the app designer table
You could use save and load functions or assignin function (if you want to send data from appdesigner to base workspace). But ma...

más de 1 año hace | 0

Respondida
Slow plotting in App Designer
Yeah. The interactivity in this new universe of uifigure is still too slow. The simple solution is to use de old Matlab figure. ...

más de 1 año hace | 0

Respondida
Matlab accuracy (when 1-1~=0)
It's float operation universe. :) w=0.026; b=0.024; i=0.001; w-0.026; b-0.024; i-0.001; Instead of: w == (b+2*i) Use: ...

más de 1 año hace | 0

Pregunta


Programmatically event in App Designer, is it possible?
I am trying to create an event programmatically in App Designer, like a "PushedButton" or a "ValueChanged". Is it possible? I kn...

más de 1 año hace | 1 respuesta | 1

1

respuesta

Respondida
Creating Shortcut for Matlab app (mlapp)
No. You have to compile it. And then, during the installation process of your app, you could choose to create a desktop shortcut...

más de 1 año hace | 0

| aceptada

Respondida
adding trailing 0s to inputted numbers
You have to use strings to control the number of decimals. sprintf('%.1f', 4) sprintf('%.2f', 4) sprintf('%.6f', 4)

más de 1 año hace | 1

Respondida
Help with Matlab homework quesion
Hi Peter, there are a lot of ways to do the same thing. I wrote in Matlab R2021b one of those ways... and I can't avoid commenti...

más de 1 año hace | 0

Respondida
Python library compilation error (Python 3.9, MATLAB R2021b)
Hi @Alberto Tellaeche, I was dealing with a similar issue - numpy was the lib that was not running. The solution was create a ne...

más de 1 año hace | 1

| aceptada

Respondida
Menubar hides and reappears at startup of App Designer App.
It's a bug. So... there are two ways to deal with it: Report the bug! :) Or... you can create your own graphic menu, controlli...

más de 1 año hace | 1

Respondida
I am getting an error "cannot convert double value to a handle".
You forgot to put the value in the property "Value" of the object... app.TotalInvestment.Value = Amount*(1 + ((Rate*1/100)/nper...

más de 1 año hace | 0

Respondida
Simple Matlab App Designer application compiled into a stand-alone executable became very slow
Yeah. I had to deal with the same issue. You have to update the graphic driver of your computer and your OS (old versions of Wi...

más de 1 año hace | 0

Respondida
Check if button was pressed in Matlab AppDesigner
Another idea is to use "statebutton" instead "button" to get a more user-friendly GUI. And you can use just one callback to get ...

más de 1 año hace | 0

Pregunta


Matlab RunTime and argc/argv as input arguments of an app?
I have two apps made on AppDesigner (desktop apps) and, for some reason, I want to generate separate executables files. In this ...

más de 1 año hace | 1 respuesta | 0

1

respuesta

Resuelto


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

más de 1 año hace

Pregunta


Is there a better way to the startup of a standalone app?
Hey guys! First of all I should say that appDesigner is a really fantastic IDE (so more straightforward than Visual Studio, for ...

más de 1 año hace | 1 respuesta | 0

1

respuesta

Respondida
loop of Column Average
Hi @Arvind Gauns, just pass your input matrix to the function below. Hope it helps! :) function outMatrix = Fcn_twoColumnsMean(...

alrededor de 2 años hace | 0

Cargar más