回答済み
AppDesigner inspector not showing all properties
Hello, You can't change the code in the grey area. Find your component in Component Browser, on the right hand site, below the ...

5年弱 前 | 0

| 採用済み

回答済み
Unable to open file as a workbook excel 97
Moving conversation here as an answer. For the reference, read the comment section. hExcel = actxserver('Excel.Application'); ...

5年弱 前 | 1

| 採用済み

回答済み
App Designer: Display content of a txt file on a text area
Hello, Try this and see if the output is correct. app.TextString = fileread('file.txt'); app.TextArea.Value = app.TextString...

5年弱 前 | 1

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

5年弱 前 | 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...

5年弱 前 | 3

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

5年弱 前 | 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...

5年弱 前 | 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...

5年弱 前 | 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...

5年弱 前 | 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...

5年弱 前 | 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 ...

5年弱 前 | 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...

5年弱 前 | 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...

約5年 前 | 0

| 採用済み

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

約5年 前 | 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 ...

約5年 前 | 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...

約5年 前 | 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...

約5年 前 | 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...

約5年 前 | 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...

約5年 前 | 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...

約5年 前 | 0

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

約5年 前 | 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 ...

約5年 前 | 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.

約5年 前 | 0

| 採用済み

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

約5年 前 | 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...

約5年 前 | 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 ...

約5年 前 | 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 ...

約5年 前 | 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...

約5年 前 | 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...

約5年 前 | 0

| 採用済み

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

約5年 前 | 0

さらに読み込む