photo

Austin M. Weber


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

통계

All
MATLAB Answers

11 질문
48 답변

File Exchange

9 파일

Cody

0 문제
50 답안

Discussions

1 하이라이트

순위
900
of 302,023

평판
86

참여
11 질문
48 답변

답변 채택
90.91%

획득한 표
11

순위
10,931 of 21,507

평판
51

평균 평점
0.00

참여
9 파일

다운로드 수
19

ALL TIME 다운로드 수
395

순위
10,296
of 178,195

참여
0 문제
50 답안

점수
706

배지 수
5

참여
0 게시물

참여
0 공개 채널

평균 평점

참여
1 하이라이트

평균 좋아요 수
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

배지 보기

Feeds

제출됨


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

3일 전 | 다운로드 수: 6 |

0.0 / 5
Thumbnail

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

4일 전 | 0

제출됨


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.

3개월 전 | 다운로드 수: 3 |

0.0 / 5
Thumbnail

제출됨


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

3개월 전 | 다운로드 수: 1 |

0.0 / 5
Thumbnail

제출됨


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

11개월 전 | 다운로드 수: 2 |

0.0 / 5
Thumbnail

제출됨


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

대략 1년 전 | 다운로드 수: 1 |

0.0 / 5
Thumbnail

제출됨


Colordle
A color guessing game, inspired by Wordle.

1년 초과 전 | 다운로드 수: 1 |

0.0 / 5
Thumbnail

제출됨


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

1년 초과 전 | 다운로드 수: 1 |

0.0 / 5
Thumbnail

문제를 풀었습니다


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

1년 초과 전

제출됨


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

거의 2년 전 | 다운로드 수: 3 |

0.0 / 5
Thumbnail

질문


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년 전 | 답변 수: 1 | 0

1

답변

답변 있음
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년 전 | 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...

대략 2년 전 | 0

제출됨


groupedSpacedBoxchart
Boxcharts with space between groups (MATLAB function).

대략 2년 전 | 다운로드 수: 1 |

0.0 / 5
Thumbnail

답변 있음
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년 전 | 1

문제를 풀었습니다


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

2년 초과 전

문제를 풀었습니다


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

2년 초과 전

문제를 풀었습니다


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

2년 초과 전

문제를 풀었습니다


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

2년 초과 전

문제를 풀었습니다


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

2년 초과 전

문제를 풀었습니다


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

2년 초과 전

문제를 풀었습니다


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

2년 초과 전

문제를 풀었습니다


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

2년 초과 전

문제를 풀었습니다


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

2년 초과 전

답변 있음
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...

2년 초과 전 | 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...

2년 초과 전 | 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...

2년 초과 전 | 답변 수: 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...

2년 초과 전 | 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...

2년 초과 전 | 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: ...

2년 초과 전 | 0

더 보기