Programming Languages:
MATLAB
MATLAB
Feeds
已提交
PREP
Climate proxy representativeness calculation and visualization toolbox.
10 months 前 | 1 次下载 |
已提交
ncRearrange
Read data from NetCDF files and rearrange longitude and latitude dimensions.
11 months 前 | 1 次下载 |
已提交
s2g
Identify grid points in a 2D grid that correspond to given scatter points.
11 months 前 | 1 次下载 |
已提交
supercolorbar
Supercolorbar draws a user defined colorbar with various tick styles and end (extension) shapes.
2 years 前 | 4 次下载 |
已提交
rwl_read
Read Tucson decadal tree-ring measurement data (.rwl) and correct formating errors
2 years 前 | 1 次下载 |
已提交
donut3
Creates a 3-D donut chart with offset slices and custom labels using pie3 syntax and removing vertical edge lines in the same sl...
2 years 前 | 4 次下载 |
已提交
pcboundary - boundary lines of pcolor regions
Draw boundary lines of connected components plotted by pcolor function.
2 years 前 | 1 次下载 |
已回答
limits of latitude - longitude
% if you just want to show data in specific extent, set the axis limit as follows after ploting all data ylim([-80 -50]) % if ...
limits of latitude - longitude
% if you just want to show data in specific extent, set the axis limit as follows after ploting all data ylim([-80 -50]) % if ...
2 years 前 | 0
已提交
insertarray - insert data into a n-D array
Insertarray inserts an array at specific dimension and locations in a multidimensional array.
2 years 前 | 1 次下载 |
已解决
Merge structs on fields
Merge a bunch of structs into one, containing the field names and corresponding values of all input structs. For duplicate field...
2 years 前
已解决
Vector creation
Create a vector using square brackets going from 1 to the given value x in steps on 1. Hint: use increment.
2 years 前
已解决
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 years 前
已解决
Get the length of a given vector
Given a vector x, the output y should equal the length of x.
2 years 前
已解决
Undocumented MATLAB tricks No. 2 - Tell the parfor index
Your function is called in multiple for-loops, and the loop indices are given to your function. One of these indices are from a ...
2 years 前
已解决
Select every other element of a vector
Write a function which returns every other element of the vector passed in. That is, it returns the all odd-numbered elements, s...
2 years 前
已解决
Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...
2 years 前
已提交
condplot - Conditional line plot
Condplot draws a line that changes color depending on given thresholds.
2 years 前 | 1 次下载 |
已解决
Duplicate each element of a vector.
for an n-dimensional vector x, the function should return another vector 2n-dimension which each element is repeated twice. Ex...
2 years 前
已提交
donut - easily create a donut chart using pie syntax
Donut creates a donut chart with offset slices and custom labels.
2 years 前 | 2 次下载 |
已解决
Matlab Basics - Pick out parts of a vector
Consider x a vector of length >= 7 (there are at least 7 elements in the vector, write a script that extracts the 2nd element, a...
3 years 前
已解决
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 years 前
已解决
We love vectorized solutions. Problem 1 : remove the row average.
Given a 2-d matrix, remove the row average from each row. Your solution MUST be vectorized. The solution will be tested for ac...
3 years 前
已解决
The Piggy Bank Problem
Given a cylindrical piggy bank with radius g and height y, return the bank's volume. [ g is first input argument.] Bonus though...
3 years 前