photo

Austin M. Weber


Active since 2021

Followers: 0   Following: 0

Research Interests: Ice core paleoclimatology, machine learning , electron microscopy, remote sensing.

Programming Languages:
MATLAB
Professional Interests:
Earth, Ocean, and Atmospheric Sciences

Statistics

All
  • MATLAB Central Treasure Hunt Finisher
  • 6 Month Streak
  • Knowledgeable Level 3
  • Community Group Solver
  • CUP Challenge Master
  • GitHub Submissions Level 1
  • Personal Best Downloads Level 1
  • First Review
  • First Answer
  • First Submission
  • Thankful Level 3
  • Thankful Level 2

View badges

Feeds

View by

Submitted


Dracula color theme for figures
MATLAB functions for converting your figures into a stylish dark color theme.

1 month ago | 11 downloads |

Thumbnail

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

2 months ago | 0

| accepted

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

2 months ago | 0

Submitted


groupedSpacedBoxchart
Boxcharts with space between groups (MATLAB function).

2 months ago | 2 downloads |

Thumbnail

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

2 months ago | 0

Solved


Vector creation
Create a vector using square brackets going from 1 to the given value x in steps on 1. Hint: use increment.

3 months ago

Solved


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

3 months ago

Solved


Create a vector
Create a vector from 0 to n by intervals of 2.

3 months ago

Solved


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

3 months ago

Solved


Whether the input is vector?
Given the input x, return 1 if x is vector or else 0.

3 months ago

Solved


Find max
Find the maximum value of a given vector or matrix.

3 months ago

Solved


Get the length of a given vector
Given a vector x, the output y should equal the length of x.

3 months ago

Solved


Inner product of two vectors
Find the inner product of two vectors.

3 months ago

Solved


Arrange Vector in descending order
If x=[0,3,4,2,1] then y=[4,3,2,1,0]

3 months ago

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

3 months ago | 0

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

3 months ago | 1

Question


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

4 months ago | 1 answer | 0

1

answer

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

4 months ago | 1

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

5 months ago | 0

Answered
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: ...

5 months ago | 0

Answered
error saving figure as .tiff
If you are using R2020a or later, try using the exportgraphics function: fig = gcf; exportgraphics(fig,'myFigure.tiff','Resolu...

5 months ago | 0

| accepted

Solved


Pizza!
Given a circular pizza with radius z and thickness a, return the pizza's volume. [ z is first input argument.] Non-scored bonus...

5 months ago

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

5 months ago | 0

| accepted

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

5 months ago | 0

Answered
How can i create these two graphs in matlab , rough idea please
This is only half an answer, but you can reproduce the plot on the left using the following code: % Define data x = 0 : 0.01 :...

5 months ago | 0

Answered
Create new Figures with MATLAB live script
Hi @Ahmad, I recommend putting the following command: close all at the beginning of your MATLAB live script. This should rese...

5 months ago | 0

| accepted

Answered
I have longitude data from -280 to 80, latitude data -90 to +90. I need to plot a global spatial map of Temperature data. (-180, -90, 180, 90). How to do it
Are you sure that your longitude data goes from -280 to 80 and not -180 to 80? Or perhaps from -180 to 180? There is no such thi...

5 months ago | 0

Answered
matlab online read excel sheet
Have you tried specifying the file type as a spreadsheet when using the readtable function? filename = 'Trial01_8deg (1).xlsx';...

5 months ago | 0

Answered
Stipple hatch on a Arctic map isn't showed correctly
Hi @Anna, Since your chart is shown using a stereographic projection, the stipple marks closest to the pole only appear like a ...

5 months ago | 0

| accepted

Answered
How can I import .dng files using compression scheme 52546?
Hi @Stephan Cevallos, I haven't worked with .dng images before, but I found a function called DNG2JPG on the MATLAB File Exchan...

5 months ago | 0

Load more