photo

Austin M. Weber


Actif depuis 2021

Followers: 0   Following: 0

Postdoctoral Scholar studying the preservation of mineral dust in tropical ice core records. My primary research interests include ice core paleoclimatology, machine learning, electron microscopy, mineralogy, and remote sensing.

Programming Languages:
MATLAB
Professional Interests:
Geoscience

Statistiques

All
MATLAB Answers

11 Questions
48 Réponses

File Exchange

9 Fichiers

Cody

0 Problèmes
55 Solutions

Discussions

1 Point fort

RANG
900
of 302 125

RÉPUTATION
86

CONTRIBUTIONS
11 Questions
48 Réponses

ACCEPTATION DE VOS RÉPONSES
90.91%

VOTES REÇUS
11

RANG
10 853 of 21 558

RÉPUTATION
52

CLASSEMENT MOYEN
0.00

CONTRIBUTIONS
9 Fichiers

TÉLÉCHARGEMENTS
20

ALL TIME TÉLÉCHARGEMENTS
403

RANG
9 809
of 179 242

CONTRIBUTIONS
0 Problèmes
55 Solutions

SCORE
771

NOMBRE DE BADGES
5

CONTRIBUTIONS
0 Publications

CONTRIBUTIONS
0 Public Chaîne

CLASSEMENT MOYEN

CONTRIBUTIONS
1 Point fort

NOMBRE MOYEN DE LIKES
0

  • MATLAB Central Treasure Hunt Finisher
  • 6 Month Streak
  • Knowledgeable Level 3
  • CUP Challenge Master
  • Introduction to MATLAB Master
  • Explorer
  • Personal Best Downloads Level 2
  • GitHub Submissions Level 3
  • First Review
  • First Answer
  • First Submission
  • Thankful Level 3

Afficher les badges

Feeds

A soumis


eds-classification
A repository of functions for identifying mineral species in SEM-EDS data.

2 jours il y a | 79 téléchargements |

0.0 / 5
Thumbnail

A résolu


Remove Unique Elements
Given a list of integers, we want to keep only the non-unique elements in this list. To do this, we need to remove all the uniqu...

10 jours il y a

A résolu


Available ingredients + recipe -> number of cakes
Write a function Egg_Milk_Sugar(L, recipe) to determine the maximum number of cakes that can be prepared given a list of availab...

11 jours il y a

A résolu


Sun angle
Determine the angle of the sun above the horizon based on the time of day. Assumptions: the sun rises in the East at 6h00, cor...

11 jours il y a

A soumis


ByrdDIT - The Byrd Data Import Tool
Query, download, and visualize data published by the ice core group at the Byrd Polar and Climate Research Center.

12 jours il y a | 15 téléchargements |

0.0 / 5
Thumbnail

A résolu


Pronounce digits
Given a number num, select the first d decimal places and pronounce the digits (in English). The function returns the pronunciat...

18 jours il y a

A résolu


Duplicates
Write a function that accepts a cell array of strings and returns another cell array of strings *with only the duplicates* retai...

28 jours il y a

A résolu


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

29 jours il y a

Discussion


eds-classification: Version 2.0 is now available
💡About First, I would like to thank everyone who has downloaded my eds-classification repository so far. This post is meant fo...

environ un mois il y a | 0

A soumis


StokesSimulator
Simulate the settling velocities of particles in the atmosphere or in water using Stokes' Law approximations.

4 mois il y a | 4 téléchargements |

0.0 / 5
Thumbnail

A soumis


Core Stratigraphy Visualization
MATLAB functions to generate a cylindrical representation of a rock core, sediment core, or ice core.

environ un an il y a | 53 téléchargements |

0.0 / 5
Thumbnail

A soumis


Categorical Colors
Color palettes for visualizing categorical data/changing the color order.

plus d'un an il y a | 46 téléchargements |

0.0 / 5
Thumbnail

A soumis


Colordle
A color guessing game, inspired by Wordle.

plus d'un an il y a | 9 téléchargements |

0.0 / 5
Thumbnail

A soumis


Dracula theme for figures
A stylish dark color theme for figures. Great for dark mode!

plus d'un an il y a | 112 téléchargements |

0.0 / 5
Thumbnail

A résolu


Rounding off numbers to n decimals
Inspired by a mistake in one of the problems I created, I created this problem where you have to round off a floating point numb...

plus d'un an il y a

A soumis


Radial histogram for categorical data
Make radial histograms (a.k.a. polar histogram or circular histogram) for visualizing categorical data

presque 2 ans il y a | 38 téléchargements |

0.0 / 5
Thumbnail

Question


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

presque 2 ans il y a | 1 réponse | 0

1

réponse

Réponse apportée
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 ...

plus de 2 ans il y a | 0

| A accepté

Réponse apportée
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...

plus de 2 ans il y a | 0

A soumis


groupedSpacedBoxchart
Boxcharts with space between groups (MATLAB function).

plus de 2 ans il y a | 47 téléchargements |

0.0 / 5
Thumbnail

Réponse apportée
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...

plus de 2 ans il y a | 1

A résolu


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

plus de 2 ans il y a

A résolu


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

plus de 2 ans il y a

A résolu


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

plus de 2 ans il y a

A résolu


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

plus de 2 ans il y a

A résolu


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

plus de 2 ans il y a

A résolu


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

plus de 2 ans il y a

A résolu


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

plus de 2 ans il y a

A résolu


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

plus de 2 ans il y a

Réponse apportée
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...

plus de 2 ans il y a | 0

Charger plus