
millercommamatt
North Carolina State University
Atmospheric Research Scientist
Statistics
RANK
1,068
of 260,030
REPUTATION
50
CONTRIBUTIONS
6 Questions
28 Answers
ANSWER ACCEPTANCE
16.67%
VOTES RECEIVED
3
RANK
16,060 of 17,884
REPUTATION
3
AVERAGE RATING
0.00
CONTRIBUTIONS
2 Files
DOWNLOADS
7
ALL TIME DOWNLOADS
25
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Content Feed
Solved
Get the area codes from a list of phone numbers
Given a string of text with phone numbers in it, return a unique'd cell array of strings that are the area codes. s = '508-647...
8 months ago
How can I overlay a shapefile onto a geoscatter plot?
Plotting shapefiles on a geographic axis isn't always the best experience. You'll note that geoshow is intended for use with a s...
8 months ago | 0
| accepted
Download MATLAB2020b for linux
On the download page you can select your release on the left hand side, and then you can selection your OS via the main download...
8 months ago | 0
Help plotting satellite data?
geoshow(lat(:), lon(:), long(:),'DisplayType','ImageMap');
8 months ago | 0
| accepted
Basic question about loops
You could make use of genvarname, but this would work too. for i = 2:5 eval(['Idx' num2str(i) ' = Idx(:,' num2str(i) ');']...
8 months ago | 0
| accepted
Convert nifti file containing a brain region of interest to a logical vector (number of seeds (in this case 1) x number of voxels?
Start here: https://www.mathworks.com/matlabcentral/fileexchange?q=NIfTI
8 months ago | 0
Load .slk file format (excel can open it, but can't import it to matlab)
data = readtable('your_spreadsheet.slk','FileType','spreadsheet');
8 months ago | 0
How to Convert .nii file to png/jpg
https://www.mathworks.com/matlabcentral/fileexchange?q=NIfTI
8 months ago | 0
Why MATLAB cannot render $\Beta$ (LaTeX string) in xlabel, ylabel?
For an upper case beta, just use B and not \Beta. Here's the characters you can use: https://www.mathworks.com/help/matlab/crea...
8 months ago | 1
| accepted
Can anyone tell me what this does
That looks like a calculation for a percentage change.
8 months ago | 0
| accepted
Question
How do I get the brush tool to ignore points?
Let's say I have a single figure with multiple line or scatter objects sharing the same axis. I would like to use the brush too...
8 months ago | 1 answer | 0
1
answerQuestion
Outerjoining timetables giving unwanted NaN/NaT values
I'm trying to outerjoin two timetables using a common non-time key. Here's an example: >> Tleft = timetable(seconds([1;2;4;6])...
9 months ago | 0 answers | 0
0
answersHow to plot binary matrix as dots?
FH = figure; imagesc(yourMatrix); colormap(FH,[0,0,0;1,1,1]);
9 months ago | 0
Solved
Divisible by 2
This is the first problem in a set of "divisible by x" problems. You will be provided a number as a string and the function you ...
11 months ago
Solved
Join Strings with Multiple Different Delimiters
The idea is to form the string S by interleaving the elements of a cell array of strings DELIMITER and another cell array of st...
11 months ago
How to set the thickness of edge for one marker in plot?
The 'LineWidth' Property controls the thickness of the marker edge. e.g. plot(data(:,1),data(:,2),'o','MarkerSize',5, 'Marke...
11 months ago | 0
| accepted
Plot time series analysis from multiple netcdf files
Read each netCDF file. Concatenate the arrays. Plot the concatenated arrays.
11 months ago | 0
How to make a Video from 3D array
You never defined the variable cmap which is supposed to be a color map. Try This: Orig = rand(600,600,28); camp=parula; X =...
11 months ago | 1
Solved
Octoberfest festival
A group of students decided to visit Octoberfest festival. First they ordered one beer, then after half-hour they taken one more...
11 months ago
Submitted
Figure Subaxes Labeler
Labels figure subaxes. The labels can be capital letters, lowercase, numbers, or any user-specified characters.
11 months ago | 2 downloads |
Solved
Missing five
Convert decimal numbers to a base-9 notation missing the digit *5* <<http://www.alfnie.com/software/missing5.jpg>> Too man...
12 months ago
Solved
Basic electricity in a dry situation
⚡ ⚡ ⚡ ⚡ ⚡ ⚡ ⚡ ⚡ ⚡ ⚡ ⚡ ⚡ ⚡ ⚡ ⚡ ⚡ ⚡ ⚡ &#...
12 months ago
Solved
Project Euler: Problem 4, Palindromic numbers
A palindromic number reads the same both ways. The largest palindrome made from the product of two 2-digit numbers is 9009 = 91 ...
12 months ago
Solved
Project Euler: Problem 9, Pythagorean numbers
A Pythagorean triplet is a set of three natural numbers, a b c, for which, a^2 + b^2 = c^2 For example, 3^2 + 4^2 =...
12 months ago
Solved
Project Euler: Problem 8, Find largest product in a large string of numbers
Find the greatest product of five consecutive digits in an n-digit number. 73167176531330624919225119674426574742355349194934...
12 months ago
Solved
Project Euler: Problem 7, Nth prime
By listing the first six prime numbers: 2, 3, 5, 7, 11, and 13, we can see that the 6th prime is 13. What is the Nth prime nu...
12 months ago
Solved
Project Euler: Problem 3, Largest prime factor
The prime factors of 13195 are 5, 7, 13 and 29. What is the largest prime factor of the number being input, input might be ui...
12 months ago
Solved
Project Euler: Problem 5, Smallest multiple
2520 is the smallest number that can be divided by each of the numbers from 1 to 10 without any remainder. What is the smalle...
12 months ago
Solved
Project Euler: Problem 2, Sum of even Fibonacci
Each new term in the Fibonacci sequence is generated by adding the previous two terms. By starting with 1 and 2, the first 10 te...
12 months ago
Solved
Project Euler: Problem 10, Sum of Primes
The sum of the primes below 10 is 2 + 3 + 5 + 7 = 17. Find the sum of all the primes below the input, N. Thank you <http:/...
12 months ago