Austin M. Weber
自 2021 起处于活动状态
Followers: 0 Following: 0
Research Interests: Ice core paleoclimatology, machine learning , electron microscopy, remote sensing.
Programming Languages:
MATLAB
Professional Interests:
Geoscience
MATLAB
Professional Interests:
Geoscience
Feeds
已提交
eds-classification
Functions for working with SEM-EDS data in MATLAB, including different algorithms for performing mineral classification.
13 days 前 | 6 次下载 |
已提交
Categorical Colors
Color palettes for visualizing categorical data/changing the color order.
18 days 前 | 6 次下载 |
已提交
Core Stratigraphy Visualization
MATLAB functions to generate a cylindrical representation of a rock core, sediment core, or ice core.
1 month 前 | 22 次下载 |
已提交
Radial histogram for categorical data
Make radial histograms (a.k.a. polar histogram or circular histogram) for visualizing categorical data
1 month 前 | 8 次下载 |
提问
How to correctly adjust the FaceColor property of patch objects in a figure with a legend?
Hello community, I am having an issue adjusting the FaceColor property of patch objects in a figure. That is, only the legend i...
2 months 前 | 1 个回答 | 0
1
个回答已提交
ByrdDIT - The Byrd Data Import Tool
GUI for ice core researchers to quickly access, visualize, and save data sets published by the Byrd Polar & Climate Research Cen...
3 months 前 | 2 次下载 |
已提交
Dracula color theme for figures
MATLAB functions for converting your figures into a stylish dark color theme.
5 months 前 | 5 次下载 |
已回答
Linking line plot and map (geoshow) together MATLAB
Assuming that I am understanding correctly, if the y-axis of your second subplot is supposed to represent latitude values, then ...
Linking line plot and map (geoshow) together MATLAB
Assuming that I am understanding correctly, if the y-axis of your second subplot is supposed to represent latitude values, then ...
6 months 前 | 0
| 已接受
已回答
How can one use a variable to set color of a line plot , and use colorbar?
To color the line according the values in the variable anx: % Your data load koordmean load anx x = koordmean(:,1); y = koo...
How can one use a variable to set color of a line plot , and use colorbar?
To color the line according the values in the variable anx: % Your data load koordmean load anx x = koordmean(:,1); y = koo...
6 months 前 | 0
已提交
groupedSpacedBoxchart
Boxcharts with space between groups (MATLAB function).
6 months 前 | 4 次下载 |
已回答
Adjusting the spacing between the bars of different groups within a category using boxchart.
If you set the BoxWidth name-value pair to 1 then the boxcharts will all touch each other: load temperature_data % A random dat...
Adjusting the spacing between the bars of different groups within a category using boxchart.
If you set the BoxWidth name-value pair to 1 then the boxcharts will all touch each other: load temperature_data % A random dat...
6 months 前 | 0
已解决
Vector creation
Create a vector using square brackets going from 1 to the given value x in steps on 1. Hint: use increment.
7 months 前
已解决
Doubling elements in a vector
Given the vector A, return B in which all numbers in A are doubling. So for: A = [ 1 5 8 ] then B = [ 1 1 5 ...
7 months 前
已解决
Flip the vector from right to left
Flip the vector from right to left. Examples x=[1:5], then y=[5 4 3 2 1] x=[1 4 6], then y=[6 4 1]; Request not ...
7 months 前
已解决
Get the length of a given vector
Given a vector x, the output y should equal the length of x.
7 months 前
已回答
Geoplot with bar chart for each zone
Hi @Shamsoddin, Assuming I understand what you're asking for, the following code should help get you started. Just note that t...
Geoplot with bar chart for each zone
Hi @Shamsoddin, Assuming I understand what you're asking for, the following code should help get you started. Just note that t...
7 months 前 | 0
已回答
can you please help me how to load only indian map from world
Hi @Mr Thadi, If you download and install the borders package from the File Exchange then you can plot a map of India very easi...
can you please help me how to load only indian map from world
Hi @Mr Thadi, If you download and install the borders package from the File Exchange then you can plot a map of India very easi...
7 months 前 | 1
提问
Why is my diverging colormap not centered as expected?
I want to plot a heatmap of some data using a diverging colormap from the crameri function (File Exchange). However, the colorma...
8 months 前 | 1 个回答 | 0
1
个回答已回答
Changing the longitude of NetCDF from 0-360 to -180-180?
I am attaching a .mat file with some CPC Global Temperature data as an example. EDIT: Corrections thanks to @Walter Roberson l...
Changing the longitude of NetCDF from 0-360 to -180-180?
I am attaching a .mat file with some CPC Global Temperature data as an example. EDIT: Corrections thanks to @Walter Roberson l...
9 months 前 | 1
已回答
Unable to use load coast and geoshow as it was in the R2017a version.
Hi @Joydeb Saha, The command is not load coast but rather: load coastlines Here is an example of how you can use it: load co...
Unable to use load coast and geoshow as it was in the R2017a version.
Hi @Joydeb Saha, The command is not load coast but rather: load coastlines Here is an example of how you can use it: load co...
9 months 前 | 0
已回答
App designer not working same as Matlab providing the same code
Hi @Victor, I think you are right that your plot isn't being properly reset after each time you press the button. Try adding: ...
App designer not working same as Matlab providing the same code
Hi @Victor, I think you are right that your plot isn't being properly reset after each time you press the button. Try adding: ...
9 months 前 | 0
已回答
error saving figure as .tiff
If you are using R2020a or later, try using the exportgraphics function: fig = gcf; exportgraphics(fig,'myFigure.tiff','Resolu...
error saving figure as .tiff
If you are using R2020a or later, try using the exportgraphics function: fig = gcf; exportgraphics(fig,'myFigure.tiff','Resolu...
9 months 前 | 0
| 已接受
已解决
Pizza!
Given a circular pizza with radius z and thickness a, return the pizza's volume. [ z is first input argument.] Non-scored bonus...
9 months 前
已回答
Normalize axis scale for annotations
The text function allows you to place annotations on a figure using axes coordinates. For example: hf = figure; x = -180:180; ...
Normalize axis scale for annotations
The text function allows you to place annotations on a figure using axes coordinates. For example: hf = figure; x = -180:180; ...
9 months 前 | 0
| 已接受
已回答
Create a boxchart with half-boxes
@Joel Ramadani, Since there is not already a built-in function for making "half" box plots, it might be beneficial to to write ...
Create a boxchart with half-boxes
@Joel Ramadani, Since there is not already a built-in function for making "half" box plots, it might be beneficial to to write ...
9 months 前 | 0