Community Profile

photo

Eric Sargent

Last seen: 2日 前 2018 年からアクティブ

Followers: 0   Following: 0

統計

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

バッジを表示

Feeds

表示方法

回答済み
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年以上 前 | 4

回答済み
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年以上 前 | 6

回答済み
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年以上 前 | 1

回答済み
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年以上 前 | 1

回答済み
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年以上 前 | 1

回答済み
Can I read GeoTIFF images in MATLAB?
Starting in R2020a, readgeoraster is the recommended way to read GeoTIFF files.

3年以上 前 | 0

回答済み
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/file-import-and-...

3年以上 前 | 0

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

3年以上 前 | 1

回答済み
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年以上 前 | 0

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

3年以上 前 | 0

回答済み
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年以上 前 | 1

回答済み
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年以上 前 | 1

回答済み
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年以上 前 | 0

回答済み
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年以上 前 | 1

回答済み
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年以上 前 | 0

回答済み
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年以上 前 | 0

回答済み
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年以上 前 | 1

| 採用済み

回答済み
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年以上 前 | 2

回答済み
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年以上 前 | 1

回答済み
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年以上 前 | 0

回答済み
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年以上 前 | 1

回答済み
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年以上 前 | 0

回答済み
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年以上 前 | 1

回答済み
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年以上 前 | 0

回答済み
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年以上 前 | 1

回答済み
How can I save a figure within app designer?
As of R2020b copyobj supports copying a UIAxes object.

3年以上 前 | 1

回答済み
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年以上 前 | 2

| 採用済み

回答済み
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年弱 前 | 0

回答済み
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年以上 前 | 3

回答済み
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年 前 | 2