已回答
How to find data points within 2% tolerance of curve
Sounds like a nice homework problem. You'll probably want to use logical indexing to find the indices of the Y data that are w...

3 years 前 | 0

| 已接受

已回答
Plotting multiple graphs from multiple ranges in excel
The easiest way is probably to read the full range of data all at once, then loop through the different ranges you want to plot....

3 years 前 | 0

已回答
Getting a filter error today when yesterday didn't?
I suspect that yesterday you weren't including x in the filter. Yesterday you were filtering the d signal, which is just [1 0 0 ...

3 years 前 | 0

已回答
How do I fix my display of the x and y values? They should be x = 1.15 and y = 3.85.
The double equals is defining x and y as a boolean. It's saying x = 1 if minimum_voltage equals acosd(B/2*A)*5/180. Let's find o...

3 years 前 | 0

已回答
How can i create these three images in one figure?
If you're question is about how to make subplots, here's how. figure subplot(3,1,1) plot(sind(1:1e4)) subplot(3,1,2) plot...

3 years 前 | 0

已回答
How can I compute the mean value over a time interval?
Hi Anna, welcome to the forum. With these types of questions it always helps if you can provide a minimal working example. But...

3 years 前 | 0

已回答
What MATLAB functions are underappreciated?
One of the most powerful functions I know of took me years from hearing about its existence to using it regularly, because it's ...

3 years 前 | 3

已回答
What MATLAB functions are underappreciated?
I rarely see anyone use the lighting functions, but they're incredibly powerful and can make data come to life. They're provide ...

3 years 前 | 1

提问


What MATLAB functions are underappreciated?
Open question: What MATLAB function(s) do you wish you had discovered sooner? Are there any functions that no one talks about, b...

3 years 前 | 8 个回答 | 4

8

个回答

已提交


MODIS Mosaic of Antarctica
Plot satellite images, grounding lines, and coast lines of Antarctica

3 years 前 | 6 次下载 |

Thumbnail

已回答
How to plot the point where two complicated graphs cross?
Does this do it for ya? https://www.mathworks.com/matlabcentral/fileexchange/11837-fast-and-robust-curve-intersections

3 years 前 | 0

已回答
Array indices must be positive integers or logical values.
I think this is the error t(2*pi*j/(2*d)) The first time through the loop, j=3, which means 2*pi*j/(2*d) = 0.02 It's tryin...

3 years 前 | 2

| 已接受

已回答
How to create a bubble plot with Antarctic Mapping Tool
Hey @Raffaello Nardin, First off, excellent job on creating a minimal working example. That really helps me understand where y...

3 years 前 | 4

| 已接受

已提交


cmocean perceptually-uniform colormaps
Perceptually-uniform colormaps inspired by oceanography

3 years 前 | 141 次下载 |

Thumbnail

已提交


Antarctic boundaries, grounding line, and masks from InSAR
A complete MEaSUREs grounding line, coast line, and mask dataset from Mouginot et al.

3 years 前 | 17 次下载 |

Thumbnail

已提交


Antarctic Mapping Tools
A toolbox for analysis and display of Antarctica-related data

3 years 前 | 30 次下载 |

Thumbnail

已回答
Multi Surface Plotting & Color Control of each surface
Try setting the facecolor option using the RGB values. Here are a red [1 0 0] and a blue [0 0 1] surface, using built-in example...

3 years 前 | 0

已回答
How to make variable matrix?
In Matlab, the first index of any variable is 1, so T(0) will produce an error. Try T(1) to T(n+1).

3 years 前 | 0

| 已接受

已回答
Ackley Function 3D plot
It looks like the code stops at the line that says return. Try putting the function at the bottom of the script and ending it wi...

3 years 前 | 0

| 已接受

已提交


anomaly
shaded line plots for anomalies

3 years 前 | 5 次下载 |

Thumbnail

已提交


BedMachine
Some tools for working with data from Morlighem et al.'s BedMachine data for Greenland and Antarctica

3 years 前 | 13 次下载 |

Thumbnail

已回答
Uniformly distributed random variables
Ah, this is a fun question, because the concept it's getting at is quite common across science and engineering. The process of...

3 years 前 | 1

| 已接受

已回答
How to select the starting point of a curve and tare all x, y plot data to this point
Perhaps you could find the index of the location where the chage in Y exceeds some critical threshold. You'll have to manually t...

3 years 前 | 0

| 已接受

已回答
Contour plot of spatial distribution of temperature
The regular quarter-degree spacing of the data suggests that no interpolation is necessary for this dataset--it just needs to be...

3 years 前 | 0

已回答
Calculate mean of gray Value
Try this. Below I'm creating an example matrix M, and calculate the mean of only the values that exceed zero: M = peaks(100); ...

3 years 前 | 1

已回答
Interpolation or meshgrid...Error using matlab.internal.math.interp1
Ah, it looks like tt_sort and tt2_sort are in fact sorted, but they contain some duplicate values. The easiest way to work aroun...

3 years 前 | 0

已回答
Median filter for an imported Excel file (removing spikes from a signal)
For a 3-point moving median, you can medfilt1 as you suggest, like this: weg_f = medfilt1(weg,3); Or similarly, you could us...

3 years 前 | 0

| 已接受

已回答
How to extract specific parts of a matrix
Let's see if I understand what you're trying to do. As I understand it, you have a 512x512 matrix with lots of values of 98 on t...

3 years 前 | 1

| 已接受

已回答
Plotting the trend line without plotting the data
Or more simply, polyplot(wspd_3yr,msid_3yr) using the polyplot function found here.

3 years 前 | 0

已回答
trend line plotting question
I've written a simple function called polyplot to add a linear trend line to plots. Get it on the File Exchange here.

3 years 前 | 0

加载更多