已回答
Open Application with MATLAB
Hi Sebastian, you're supposed to provide full path to the executable file when using system command. system("C:\Program Files\...

4 years 前 | 1

| 已接受

已回答
How can I plot and display image in MATLAB App Designer UIAxes?
Hello, For your first problem, use numeric Editfield components, for those you don't need to use str2double. You should've seen...

4 years 前 | 2

已回答
How to enter Matrix in App designer matlab
Hello, There's not a really an easy/convenient way to input the matrix. You can use the EditField Text component and use str2nu...

4 years 前 | 0

已回答
Plotting in Matlab appdesigner
Hello, Try this stem(app.UIAxes, n_range,xn); Edit: Both of these functions work, actually, the error is in writing a callbac...

4 years 前 | 0

| 已接受

已回答
how to make Reset Button in app designer
Hi, you want to set the character array to a numeric field and that doesn't work. Numeric EditField components can't have an em...

4 years 前 | 0

已回答
wordpad automation file printing
Hi Alain, here's the partial answer, see the Internet Explorer way.The issue is that you'll get the printer dialog box in which...

4 years 前 | 0

| 已接受

已回答
Saving Entries to Editable UI Table as a Variable in the Workspace
Hello, This line makes you an error, UITableLvlg is a table and it doesn't have Value property. app.LvlgData = app.UITableLvlg...

4 years 前 | 0

已回答
Standalone application reported as dangerous by the antivirus.
Posting this as an answer. When you compile the app, you probably put your name into publisher field. Defender checked if that ...

4 years 前 | 0

已回答
App design, camera preview
Hi Leonor, you can check TMW's YouTube channel for example on this, title of the video is: Building MATLAB Apps with App Desi...

4 years 前 | 0

已回答
Update Matlab App Designer App
Hi, see step 2 of this question. appHandle = findall(allfigs, 'Name', 'MyApp'); % handle to the figure of the app app = get(a...

4 years 前 | 0

| 已接受

已回答
How do I create a scrollable app using appdesigner?
Hello, click your main UIFigure component, under Interactivity, find property Scrollable.

4 years 前 | 1

| 已接受

已回答
How to reorder project shortcuts?
Hello, It looks like there are not sorting settings. You can create more shortcut groups or you can add your files to Favorite ...

4 years 前 | 0

| 已接受

已回答
When I package my script in app design,the third step is always wrong.
You have compiled a big file with your app. It's just a warning due to file size, your installer is zipped so it takes less spac...

4 years 前 | 0

| 已接受

已回答
Matlab App Desinger: How to update a figure with button
Hi, the best way to add/modify the plot data is by XData, YData, ZData, or XDataSource, ... properties. Probably, by changing t...

4 years 前 | 1

| 已接受

已回答
Slider which controls a bar plot
Hello, here's an answer to a very similar question. https://www.mathworks.com/matlabcentral/answers/733973-adding-slider-to-he...

4 years 前 | 0

已回答
when I use app designer, it tells me error of 'Value' must be a character vector or a string scalar.
Hi, z1 is a table, and Value doesn't accept tables. You can create a UITable component and just assign z1 to it app.UITable.Da...

4 years 前 | 0

| 已接受

已回答
Matlab GUI design. Apply logical indexing expression to a loaded file using input values
Hi Alessandro, yes, these callbacks do not communicate. You can solve this in a much simpler way, remove 'to' and 'from' callba...

4 years 前 | 0

已回答
GUI error in push button
Properties are case-sensitive. app.LatEditField.Value=lat

4 years 前 | 0

| 已接受

已回答
Single Selection in Uitable
Hi, you can't force it, but you can validate the selection. Event.Indices returns n by 2 array (row, column). If all elements ...

4 years 前 | 0

已回答
App Designer: Need to save an entire Tab (Group of graphs with some parameters) to an Image
In the comment section there is information on placing annotation objects in UITab and getting screenshot of UITab component.

4 years 前 | 0

| 已接受

已回答
Matlab app developed with appdesigner usable in MATLAB Online?
Hi Stuart, the best is to discuss your case with support.

4 years 前 | 0

已回答
Prompting users to enter an array to plot a stem plot in matlab app designer
Hello, you can use EditField(Text) component where user would write [1, 2, 3] into the box, and when you'd calculate stuff usin...

4 years 前 | 1

| 已接受

已回答
How to indicate there was an error in the code in App designer stand alone app?
Hello, As Adam said, it's not so easy. You can use a TextArea and Button component to trigger the callback to load the logfile ...

4 years 前 | 0

已回答
Adding slider to heatmap
Hello, I modified your code a little bit. Uislider can only be used on uifigure components. Whenever you're using uifigure you ...

4 years 前 | 2

已回答
How to delete a plotted curve which mouse clicked?
Hi, There's a button on the figure frame, second from the right, it says 'Edit Plot'. Click it, and then click the curve and pr...

4 years 前 | 1

| 已接受

已回答
Dynamic Drop Down Menu
Hello, Variable filename contains list of all files you're analysing? You need to generate the cell of character arrays for It...

4 years 前 | 0

| 已接受

已回答
trouble opening web pages in the system browser
Hi, This should work web("C:\temp/_instruction_set.html#instr_NO_operation_option")

4 years 前 | 0

已回答
[Appdesigner] Can I colour specific letters in label?
I have taken a look at properties of Label component, and it seems that it doesn't support such things. You can create uilabel c...

4 years 前 | 0

| 已接受

已回答
How to perform Hot Spot Detection ?
There's no equivalent code in AppDesigner, if you just open it and do few examples there, you'll figure out what to do. I made s...

4 years 前 | 0

| 已接受

已回答
Unable to add text to Column/cell of table in AppDesigner.
Hi, You can edit the table by setting the ColumnEditable property to true. See this link. The error happens because, the varia...

4 years 前 | 0

| 已接受

加载更多