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

más de 5 años hace | 0

| aceptada

Respondida
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'); ...

más de 5 años hace | 1

| aceptada

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

más de 5 años hace | 1

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

más de 5 años hace | 1

| aceptada

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

más de 5 años hace | 3

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

más de 5 años hace | 0

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

más de 5 años hace | 0

| aceptada

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

más de 5 años hace | 0

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

más de 5 años hace | 0

| aceptada

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

más de 5 años hace | 0

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

más de 5 años hace | 0

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

más de 5 años hace | 0

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

más de 5 años hace | 0

| aceptada

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

más de 5 años hace | 1

| aceptada

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

más de 5 años hace | 0

| aceptada

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

más de 5 años hace | 0

| aceptada

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

más de 5 años hace | 1

| aceptada

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

más de 5 años hace | 0

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

más de 5 años hace | 0

| aceptada

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

más de 5 años hace | 0

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

más de 5 años hace | 0

| aceptada

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

más de 5 años hace | 0

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

más de 5 años hace | 0

| aceptada

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

más de 5 años hace | 0

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

más de 5 años hace | 1

| aceptada

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

más de 5 años hace | 0

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

más de 5 años hace | 2

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

más de 5 años hace | 1

| aceptada

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

más de 5 años hace | 0

| aceptada

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

más de 5 años hace | 0

Cargar más