![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/7067758_1647577703787.png)
Programming Languages:
MATLAB
MATLAB
Feeds
已提交
ncRearrange
Read data from NetCDF files and rearrange longitude and latitude dimensions.
1 year 前 | 1 次下载 |
已提交
s2g
Identify grid points in a 2D grid that correspond to given scatter points.
1 year 前 | 1 次下载 |
![Thumbnail](/matlabcentral/mlc-downloads/downloads/bcd81399-e695-40ac-bafd-4e9c73e77bc4/1bb94cce-b06e-4d47-90d5-e0f06f6bcc05/images/1704273117.png)
已提交
supercolorbar
Supercolorbar draws a user defined colorbar with various tick styles and end (extension) shapes.
2 years 前 | 4 次下载 |
![Thumbnail](/matlabcentral/mlc-downloads/downloads/5891516a-d0b7-4286-b898-5b184ab5b42f/19707ba1-c7e5-4349-ae14-f2242f4ab0ed/images/1673947362.png)
已提交
rwl_read
Read Tucson decadal tree-ring measurement data (.rwl) and correct formating errors
2 years 前 | 1 次下载 |
![Thumbnail](/matlabcentral/mlc-downloads/downloads/9f157420-3b1a-4309-81c1-0aeef80cb2a1/f8fc7460-dd5d-476f-9f73-bbb556af745f/images/1671278446.png)
已提交
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 前 | 1 次下载 |
![Thumbnail](/matlabcentral/mlc-downloads/downloads/888affc9-c790-4e09-8956-6470e4a6a841/21d45043-66ba-4848-806b-ee270a914d79/images/1655869127.png)
已提交
pcboundary - boundary lines of pcolor regions
Draw boundary lines of connected components plotted by pcolor function.
2 years 前 | 1 次下载 |
![Thumbnail](/matlabcentral/mlc-downloads/downloads/d715e185-daea-493b-b74d-7eb6fd1d5d4f/2ddb09da-301f-4260-b900-8a3041493aa4/images/1654678396.jpg)
已回答
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 次下载 |
![Thumbnail](/matlabcentral/mlc-downloads/downloads/93e9f188-9440-48c5-8d96-b4a61d50f1f2/bbff60a8-5642-4195-8e7e-2210f9162312/images/1654069164.png)
已解决
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...
3 years 前
已解决
Vector creation
Create a vector using square brackets going from 1 to the given value x in steps on 1. Hint: use increment.
3 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 ...
3 years 前
已解决
Get the length of a given vector
Given a vector x, the output y should equal the length of x.
3 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 ...
3 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...
3 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 ...
3 years 前
已提交
condplot - Conditional line plot
Condplot draws a line that changes color depending on given thresholds.
3 years 前 | 1 次下载 |
![Thumbnail](/matlabcentral/mlc-downloads/downloads/93dd046f-0831-4ddd-a799-c36b39b7b81b/44df8f41-3d9d-4be8-aacf-3b7df42a699d/images/1651744217.png)
已解决
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...
3 years 前
已提交
donut - easily create a donut chart using pie syntax
Donut creates a donut chart with offset slices and custom labels.
3 years 前 | 1 次下载 |
![Thumbnail](/matlabcentral/mlc-downloads/downloads/a82d8e71-5b91-4193-999a-c2186444530e/b6190df6-b088-4267-b2fb-b51efc12be46/images/1650381877.png)
已解决
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 前