Community Profile

photo

Eric Sargent

Last seen: 15 días hace Con actividad desde 2018

Followers: 0   Following: 0

Estadísticas

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

Ver insignias

Feeds

Ver por

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

más de 3 años hace | 4

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

más de 3 años hace | 6

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

más de 3 años hace | 1

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

más de 3 años hace | 1

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

más de 3 años hace | 1

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

más de 3 años hace | 0

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

más de 3 años hace | 0

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

más de 3 años hace | 1

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

más de 3 años hace | 0

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

más de 3 años hace | 0

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

más de 3 años hace | 1

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

más de 3 años hace | 1

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

más de 3 años hace | 0

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

más de 3 años hace | 1

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

más de 3 años hace | 0

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

más de 3 años hace | 0

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

más de 3 años hace | 1

| aceptada

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

más de 3 años hace | 2

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

más de 3 años hace | 1

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

más de 3 años hace | 0

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

más de 3 años hace | 1

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

más de 3 años hace | 0

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

más de 3 años hace | 1

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

más de 3 años hace | 0

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

más de 3 años hace | 1

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

más de 3 años hace | 1

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

más de 3 años hace | 2

| aceptada

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

casi 4 años hace | 0

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

más de 4 años hace | 3

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

casi 6 años hace | 2