回答済み
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, ...

3年以上 前 | 0

| 採用済み

回答済み
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...

3年以上 前 | 0

| 採用済み

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

3年以上 前 | 0

回答済み
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...

3年以上 前 | 0

回答済み
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...

3年以上 前 | 0

回答済み
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 ...

3年以上 前 | 0

| 採用済み

回答済み
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...

3年以上 前 | 0

| 採用済み

回答済み
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 ...

3年以上 前 | 1

回答済み
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...

3年以上 前 | 1

回答済み
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–––––"; "––...

3年以上 前 | 2

| 採用済み

回答済み
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...

3年以上 前 | 0

回答済み
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...

3年以上 前 | 0

回答済み
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...

3年以上 前 | 0

回答済み
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');

3年以上 前 | 0

回答済み
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...

3年以上 前 | 0

回答済み
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...

3年以上 前 | 0

回答済み
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. ...

3年以上 前 | 0

回答済み
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: ...

3年以上 前 | 0

質問


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

3年以上 前 | 1 件の回答 | 1

1

回答

回答済み
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...

3年以上 前 | 0

| 採用済み

回答済み
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)

3年以上 前 | 1

回答済み
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...

3年以上 前 | 0

回答済み
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...

3年以上 前 | 1

| 採用済み

回答済み
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...

3年以上 前 | 1

回答済み
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...

3年以上 前 | 1

回答済み
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...

3年以上 前 | 0

回答済み
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 ...

3年以上 前 | 0

質問


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

3年以上 前 | 1 件の回答 | 0

1

回答

解決済み


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

3年以上 前

質問


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

3年以上 前 | 1 件の回答 | 0

1

回答

さらに読み込む