Beantwortet
How to save pictures individually from sequence of pictures in its variables.
Hey @Pooria Samandi, just create a cell array "imageArray"... myFolder ='C:\Users\poori'; filePattern = fullfile(myFolder, ...

etwa 2 Jahre vor | 0

| akzeptiert

Beantwortet
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...

etwa 2 Jahre vor | 0

| akzeptiert

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

etwa 2 Jahre vor | 0

Beantwortet
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...

etwa 2 Jahre vor | 0

Beantwortet
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...

etwa 2 Jahre vor | 0

Beantwortet
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 ...

etwa 2 Jahre vor | 0

| akzeptiert

Beantwortet
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...

etwa 2 Jahre vor | 0

| akzeptiert

Beantwortet
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 ...

etwa 2 Jahre vor | 0

Beantwortet
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...

etwa 2 Jahre vor | 1

Beantwortet
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–––––"; "––...

etwa 2 Jahre vor | 2

| akzeptiert

Beantwortet
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...

etwa 2 Jahre vor | 0

Beantwortet
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...

etwa 2 Jahre vor | 0

Beantwortet
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...

etwa 2 Jahre vor | 0

Beantwortet
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');

etwa 2 Jahre vor | 0

Beantwortet
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...

etwa 2 Jahre vor | 0

Beantwortet
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...

etwa 2 Jahre vor | 0

Beantwortet
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. ...

etwa 2 Jahre vor | 0

Beantwortet
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: ...

etwa 2 Jahre vor | 0

Frage


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...

etwa 2 Jahre vor | 1 Antwort | 1

1

Antwort

Beantwortet
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...

etwa 2 Jahre vor | 0

| akzeptiert

Beantwortet
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)

etwa 2 Jahre vor | 1

Beantwortet
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...

etwa 2 Jahre vor | 0

Beantwortet
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...

etwa 2 Jahre vor | 1

| akzeptiert

Beantwortet
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...

etwa 2 Jahre vor | 1

Beantwortet
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...

etwa 2 Jahre vor | 1

Beantwortet
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...

etwa 2 Jahre vor | 0

Beantwortet
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 ...

etwa 2 Jahre vor | 0

Frage


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 ...

etwa 2 Jahre vor | 1 Antwort | 0

1

Antwort

Gelöst


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:...

etwa 2 Jahre vor

Frage


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 ...

etwa 2 Jahre vor | 1 Antwort | 0

1

Antwort

Mehr laden