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

etwa 5 Jahre vor | 0

| akzeptiert

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

etwa 5 Jahre vor | 0

| akzeptiert

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

etwa 5 Jahre vor | 0

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

etwa 5 Jahre vor | 0

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

etwa 5 Jahre vor | 0

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

etwa 5 Jahre vor | 0

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

etwa 5 Jahre vor | 0

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

etwa 5 Jahre vor | 0

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

etwa 5 Jahre vor | 0

| akzeptiert

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

etwa 5 Jahre vor | 2

| akzeptiert

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

etwa 5 Jahre vor | 0

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

etwa 5 Jahre vor | 0

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

etwa 5 Jahre vor | 0

| akzeptiert

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

etwa 5 Jahre vor | 0

| akzeptiert

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

etwa 5 Jahre vor | 1

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

etwa 5 Jahre vor | 0

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

etwa 5 Jahre vor | 0

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

etwa 5 Jahre vor | 1

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

etwa 5 Jahre vor | 0

| akzeptiert

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

etwa 5 Jahre vor | 2

| akzeptiert

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

etwa 5 Jahre vor | 0

| akzeptiert

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

etwa 5 Jahre vor | 1

| akzeptiert

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

etwa 5 Jahre vor | 0

| akzeptiert

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

etwa 5 Jahre vor | 0

| akzeptiert

Gesendet


uioptimoptions
Provides UI for optimoptions in MATLAB

etwa 5 Jahre vor | 5 Downloads |

0.0 / 5
Thumbnail

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

etwa 5 Jahre vor | 0

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

etwa 5 Jahre vor | 0

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

etwa 5 Jahre vor | 1

| akzeptiert

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

etwa 5 Jahre vor | 0

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

etwa 5 Jahre vor | 0

Mehr laden