Beantwortet
(App designer) How can I display all the graphs that I am plotting in a for loop?
Hello, You can set up your code into calculating your results, getting them all in a single matrix or a structure or a table an...

mehr als 3 Jahre vor | 1

Beantwortet
Matlab Array indexing and slicing
Hi, The first line replaces a subset of Ubc, with indices being replaced (2:41, 2:41), where matrix U is of the same size. You ...

mehr als 3 Jahre vor | 1

Beantwortet
Placing a figure into word and specifiying a position using ActiveX
Hi, Selection points at current location where the text is going to be displayed, you have already typed something on first pag...

mehr als 3 Jahre vor | 0

Beantwortet
Change App Display Button in Matlab
When you click the button to export app to toolbox, in the window that opens there's an area that you should click to add the im...

mehr als 3 Jahre vor | 0

| akzeptiert

Beantwortet
MATLAB App - UIAxes Array Incorrect
Hi, XLim is the property that you need to adjust in the code, or in the component editor. app.UIAxes.XLim = [0 12];

mehr als 3 Jahre vor | 0

| akzeptiert

Beantwortet
Saving feature in MATLAB App designer
Hello, Since app can't be saved, you will need to save the quiz data into the .mat file, and load it next time the app is opene...

mehr als 3 Jahre vor | 0

Beantwortet
Toggle selected option of uiconfirm
Hi, to navigate, use the Tab select next or Shift+Tab to go select previous component. I am not sure whether there exists an op...

mehr als 3 Jahre vor | 0

Beantwortet
Rows Into Single Column
Hi, This will do it. file = 'imagelist thinned.txt'; tableOpts = detectImportOptions(file); tableOpts.VariableTypes = repm...

mehr als 3 Jahre vor | 0

Beantwortet
Recover former state of Matlab Editor
Hi Matt, Actually, Yair Altman has already mentioned this https://undocumentedmatlab.com/articles/recovering-previous-editor-st...

mehr als 3 Jahre vor | 2

| akzeptiert

Beantwortet
Scroll() not working on text area
Hi, scrolling in text area is added in 2020b.

mehr als 3 Jahre vor | 0

| akzeptiert

Beantwortet
Multiple values in EditField?
Hello, Yes, you can. You'll have to use the str2num function to get the numeric array from the Edit Field (text) component. >>...

mehr als 3 Jahre vor | 0

| akzeptiert

Beantwortet
creating Tables in word using actxserver
Hello, These two lines add the borders to your table. tableObj = word.ActiveDocument.Tables.Item(1); tableObj.Borders.Enable...

mehr als 3 Jahre vor | 1

| akzeptiert

Beantwortet
Matlab jokes or puns
Younger generations will appreciate this.

mehr als 3 Jahre vor | 0

Beantwortet
How to programmatically change the label text of a matlab.ui.control.Knob (or other ui.conntrol)
Hi, Knob component actually consists of two components. If you right click on Component browser, there's an option to include c...

mehr als 3 Jahre vor | 0

| akzeptiert

Beantwortet
storage of parameters edit fields( numeric) in App designer
Hello again, You can use load function to load the file in startupFcn, an example: function startupFcn(app) data = load('...

mehr als 3 Jahre vor | 1

| akzeptiert

Beantwortet
how can I store the values ​​that the user enters in an uieditfield?
Hello, You can set your ef to be the property of the app. % This is in properties block properties(access = private) ef ...

mehr als 3 Jahre vor | 0

| akzeptiert

Beantwortet
Radiomics - github code https://github.com/mvallieres/radiomics
Hi Philip, The code should work, does it? Edited as per Walter's note When you use dir specifying folder as an input argument...

mehr als 3 Jahre vor | 0

| akzeptiert

Beantwortet
Line graphs and Scatter plots
Hello, The command 'hold on' will retain the existing plots on axes. scatter() hold on plot()

fast 4 Jahre vor | 1

| akzeptiert

Beantwortet
How can I copy 1 template Excel sheet into multiple Excel sheets in the same workbook? Using actXserver
Hello Steven, % Create an Excel object. hExcel = actxserver('Excel.Application'); % Open the worksheet. Workbooks = hExcel.W...

fast 4 Jahre vor | 0

| akzeptiert

Beantwortet
Display multiple imagesc's in separate figure windows
Hello, if you don't supply the axes handle to plot on, it will use gca axes to plot on. If there are no axes to plot on, gca w...

fast 4 Jahre vor | 0

| akzeptiert

Beantwortet
Error while loading the path for image processing
Hello, The way you get your image paths is not very good. Check the link below first, or use search tool to find similar quest...

fast 4 Jahre vor | 0

Beantwortet
Cannot get past 'System' function
Hi, You do it by adding ampersand '&' at the end of your system command. system("C:\Users\scaceres\Desktop\ZebraPrinter\Zebr...

fast 4 Jahre vor | 1

Beantwortet
how do you build a Array of numbers in App Designer?
People tend to ask about arrays in App Designer, so I created a simple demo app.

fast 4 Jahre vor | 2

| akzeptiert

Beantwortet
Matlab App Designer : An alternative to excel data aquisition
Hi Lewis, I think that you will have to create a P-file that contains the data, does the calculations and returns the results....

fast 4 Jahre vor | 0

| akzeptiert

Beantwortet
App Designer - How to generate dropdown lists using a cell array in the workspace
Hi Carlos, It's not possible to change the code in grey area. You can leave the default component values and change them in the...

fast 4 Jahre vor | 0

| akzeptiert

Beantwortet
App Designer - How to create a callback function for pressing the 'Close Window' Button
Hi Carlos, here's the answer from Adam Danz.

fast 4 Jahre vor | 1

| akzeptiert

Beantwortet
A standalone application requires matlab to run?
Hi Ricardo, It requires MATLAB Runtime to run, it's a separate product from MathWorks that you can download and install, you'll...

fast 4 Jahre vor | 1

Beantwortet
How do i debug a problem from app designer in the automatic part?
Hi Clement, You are probably missing or have an extra end statement somewhere in your code. If you click on function or metho...

fast 4 Jahre vor | 0

| akzeptiert

Beantwortet
How to display output parameter to textbox in AppDesigner?
Hello, convert your script to function, outputting the number. Use the Editfield numeric to display the number. function CALC...

fast 4 Jahre vor | 1

| akzeptiert

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

fast 4 Jahre vor | 0

| akzeptiert

Mehr laden