回答済み
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年 前 | 0

| 採用済み

回答済み
Run a function with input arguments using App Designer
Great work, thank you for doing those. You can set your variables into the property of the app and you'll be able to use those ...

約5年 前 | 0

| 採用済み

回答済み
Efficient use of 16 cores
Maximum number of workers is equal to maximum number of physical cores in your CPU. In your case it's 16.

約5年 前 | 0

回答済み
App Designer: enter data via table in the GUI
Hi Rolf, Coming a bit late onto this one, but idea is to fill the Data property with zeros or some other numbers, and make sure...

約5年 前 | 0

回答済み
PolarAxes in Matlab App Designer
Example taken from this website theta = 0:0.01:2*pi; rho = sin(2*theta).*cos(2*theta); pax = polaraxes(app.Panel); polarplo...

約5年 前 | 0

回答済み
How to use app2 to control the buttons of app1 in app designer?
Do you run your apps in the same instance of MATLAB? If yes, set tags, or unique names for your apps in Component Browser, und...

約5年 前 | 0

回答済み
How to toggle between two conditions on app designer
Hello, Use ButtonGroup for this. If you select one, it will deselect the other one(s). You can check the property SelectedObjec...

約5年 前 | 0

回答済み
Set properties of patch doesn't work
After you change properties, try with drawnow. Wrong(FaceColor, FaceAlpha, EdgeColor, LineStyle are the only properties for pa...

約5年 前 | 0

回答済み
Drop Down and geoshow
I am not seeing the issue with your code, but it could be improved a bit. Your initial value on the dropdown is the first one - ...

約5年 前 | 0

| 採用済み

回答済み
Matlab is busy after running system() command
Hi Felix, In order for the MATLAB not to be busy, you have to close the program and then you can resume to work in MATLAB. The...

約5年 前 | 2

| 採用済み

回答済み
How should I release memory while running an AppDesigner app without having to restart MATLAB?
Hi Ward, Do you use persistent variables? See in task manager which process has high memory usage, MATLAB or MATLABWindow? He...

約5年 前 | 0

回答済み
Xlabel coordinates for text command?
Hi, XLabel and Text are of the same type, so they have same properties. Default settings for text are center and middle alignme...

約5年 前 | 0

回答済み
help moving an object
Hello, I have cleaned up a little bit of your code. You can create a function that will plot a cornerlight on the position to m...

約5年 前 | 0

| 採用済み

回答済み
Appdesigner Edit Field (Numeric) won't update values.
Hello, Based on the comment section, callback should be written this way function Push_Button_Callback(app, event) app.pu...

約5年 前 | 0

| 採用済み

回答済み
Put array in ListBox to choose different values for plot/ App Designer
Hello, No need to assign ItemsData. Try this app.ListBox.Items=num2str(zR(:))

約5年 前 | 1

回答済み
Change Background Color of uitable in App Designer given different conditions?
You could try splitting the code for different versions. matlabVerTemp = ver('matlab'); matlabVersion = matlabVerTemp.Version;...

約5年 前 | 0

回答済み
How to use Ode45 in App Designer
Hi Brendan, You only define properties in the property section, not their values. properties (Access = private) a b ...

約5年 前 | 0

回答済み
AppDesigner .mlapp won't open because of code error
Hi Bryan, It's best to contact Support for this one, and to share with them the version of the app you haven't edited manually....

約5年 前 | 1

回答済み
programatically exporting the code behind an .mlapp to an m file.
Hey Chris, If you set up your application as a project, and use MATLAB's Source Control to share your project to Git, you are a...

約5年 前 | 0

| 採用済み

回答済み
Copy Matlab Command Window without diary
Hi Fabio, I Hope that you have solved your problem already, in case if someone else might be interested in this, here's the sol...

約5年 前 | 2

| 採用済み

回答済み
Pass Panel components to function with App Designer
Hello, Yes, it's possible and what you posted should be working. xy = myFunction(app.Panel); If you inspect Panel component, ...

約5年 前 | 0

| 採用済み

回答済み
Index exceeds the number of array elements (0)
If earthGravity and hoverThrust are not properties of the app, then that's why it doesn't work. properties (Access = public) ...

約5年 前 | 1

| 採用済み

回答済み
(App Designer) change callback of item / add new callback to existing item
Hello, Each component has its own callback, and only thing that you need to do to change it is to rename it, everything relate...

約5年 前 | 0

| 採用済み

回答済み
How to plot a histogram with two different bar colours
Hello, Reference to the answer by Mike is here. If you could display your data with bar function, it is possible to set the co...

約5年 前 | 0

| 採用済み

送信済み


uioptimoptions
Provides UI for optimoptions in MATLAB

約5年 前 | ダウンロード 1 件 |

0.0 / 5
Thumbnail

回答済み
How can I invoke a State button without pressing it manually, but doing it programatically?
Hello, To my slim knowledge, I wouldn't recommend it to run another callback within one. It could be better if you would wrap t...

約5年 前 | 0

回答済み
Software Design Principles for App Designer
Hello, These app.name are actually properties.I have written quite a complex app, and I can tell already, you'll never going to...

約5年 前 | 0

回答済み
How can I put a figure in app designer?
Hello, Your function does not have access to the handle of app or uiaxes in the app. The best would be to put your function in ...

約5年 前 | 1

| 採用済み

回答済み
Error setting property 'ReresultEditField' of class 'app1'. Cannot convert double value NaN to a handle
Set the component property this way app.ReresultEditField.Value = Re;

約5年 前 | 0

回答済み
Append each updated value of the same for loop variable to .mat file
Hello, I wouldn't know how append option works in detail, but It overwrites the variable in your case. Better option is to prea...

約5年 前 | 0

さらに読み込む