Community Profile

photo

Eric Sargent

Last seen: Today Active since 2018

Statistics

  • Knowledgeable Level 1
  • Thankful Level 3
  • Revival Level 1
  • First Review
  • First Answer

View badges

Content Feed

View by

Answered
How can I put existing figures in different subplots in another figure in MATLAB 6.5 (R13)?
Starting in R2019b, you can use tiledlayout to manage several axes. You can reparent each of your axes into a layout, and set th...

3 years ago | 4

Answered
How can I insert my MATLAB figure (.fig) files into multiple subplots?
Starting in R2019b, you can use tiledlayout to manage these axes. openfig('fig1.fig'); ax1=gca; openfig('fig2.fig') ax2=gca;...

3 years ago | 6

Answered
How can I insert a title over a group of subplots?
Starting in R2019b, you can also use tiledlayout and nexttile instead of subplot, which has shared titles and labels. You can us...

3 years ago | 1

Answered
Is there a command in MATLAB for creating one overall legend when I have a figure with subplots?
Starting in R2019a, you can use tiledlayout to create an "overall legend" effect. The code below attaches a legend to the secon...

3 years ago | 1

Answered
Why does my legend only display 50 entries?
Legend will cap the number of entries at 50 if no handles are specified. To have all objects in an axes show up, pass in their h...

3 years ago | 1

Answered
Can I read GeoTIFF images in MATLAB?
Starting in R2020a, readgeoraster is the recommended way to read GeoTIFF files.

3 years ago | 0

Answered
What external data types does the Mapping Toolbox support?
See Technical Note 2101 for information on geospatial data on the Internet: https://www.mathworks.com/help/map/find-geospatial-...

3 years ago | 0

Answered
Can I read Erdas Imagine file formats in MATLAB?
Starting in R2020a, the readgeoraster function can read ERDAS Imagine files.

3 years ago | 1

Answered
Does the Mapping Toolbox support Geographic Information Systems (GIS) data?
The Mapping Toolbox imports and exports generic GIS data in several formats, including shapefile, TIFF/JPEG/PNG with world files...

3 years ago | 0

Answered
reading binary ESRI grid data into matlab
Starting in R2020a, the readgeoraster function can read Esri Binary Grid .adf files.

3 years ago | 0

Answered
How can I disable all of the objects in a UIBUTTONGROUP or UIPANEL at the same time?
As of R2020b ButtonGroup and Panel both support Enable when the button group or panel is parented to a uifigure. https://www.ma...

3 years ago | 1

Answered
How Enable and disable panel by popup menu selections
As of R2020b ButtonGroup and Panel both support Enable when the button group or panel is parented to a uifigure. https://www.ma...

3 years ago | 1

Answered
How to disable a panel in GUIDE ?
As of R2020b ButtonGroup and Panel both support Enable when the button group or panel is parented to a uifigure. https://www.ma...

3 years ago | 0

Answered
Hide and disable uicontrols in groups
As of R2020b ButtonGroup and Panel both support Enable when the button group or panel is parented to a uifigure. https://www.ma...

3 years ago | 1

Answered
appdesigner button group problem
As of R2020b ButtonGroup and Panel both support Enable when the button group or panel is parented to a uifigure. https://www.ma...

3 years ago | 0

Answered
I am using ‘appdesigner’, I would like to programmatically scroll to the bottom of a TextArea, is this possible?
As of R2020b uitextarea now supports scroll. In this case you could use: scroll(textArea, 'bottom') https://www.mathworks.c...

3 years ago | 0

Answered
How to make a Text Area auto-scroll to bottom (created in app designer)
As of R2020b uitextarea now supports scroll. In this case you could use: scroll(textArea, 'bottom') https://www.mathworks.c...

3 years ago | 1

| accepted

Answered
how do i make a full text area scroll up when i add more text?
As of R2020b uitextarea now supports scroll. In this case you could use: scroll(textArea, 'bottom') https://www.mathworks.c...

3 years ago | 2

Answered
How to wrap text within buttons of app-designer
As of R2020b components that support multiline text now support WordWrap, including uibutton. https://www.mathworks.com/help/ma...

3 years ago | 1

Answered
How can I make a table editable in app designer to use the resulting data matrix?
You can now edit additional properties of a UITable in an App Designer app, such as RowName and ColumnEditable.

3 years ago | 0

Answered
How to update a app designer UIAxes plot in real time
You can also try using a timer to plot the data at a given interval. An example can be found here: https://www.mathworks.com...

3 years ago | 1

Answered
how to generate MATLAB code from Simulink model
As of R2020a you can use Simulink Compiler to compile your model and use it with your deployed / compiled App Designer app. h...

3 years ago | 0

Answered
App designer: how to get mouse position when I click on figure?
As of R2020b you can use the ginput function to get the coordinates of a selected point in an axes. It requires a specific se...

3 years ago | 1

Answered
How do I add a Table in App Designer?
You can edit the RowName, ColumnName and ColumnEditable Properties of a UITable from the Property Inspector of App Designer. ...

3 years ago | 0

Answered
Calling external functions in App Designer
There is MATLAB documentation to help answer this: https://www.mathworks.com/help/matlab/creating_guis/code-and-call-app-functi...

3 years ago | 1

Answered
How can I save a figure within app designer?
As of R2020b copyobj supports copying a UIAxes object.

3 years ago | 1

Answered
Is it possible to build custom UI components in app designer that can be visually re-used in app designer?
As of R2020b you can author a custom UI component and add it to an App Designer app programatically (i.e. it is not possible to ...

3 years ago | 2

| accepted

Answered
How to create interactive plot in matlab
App Designer is the recommended enviroment for building apps in MATLAB. To get started, you can watch this video: https://www.m...

4 years ago | 0

Answered
How to draw line vertical to Y-axis?
Starting in R2018b you can simply use xline and yline. In this case: yline(4,'r'); yline(7,'r');

4 years ago | 3

Answered
How can I set a global variable in public properties App Designer that depends on another one?
You need to define them as public properties and set the static values. You need to declare ALL of the variables you want/need ...

6 years ago | 2