Respondida
Netcdf - Converting x,y gridded data (lambert-equal area) to cartesian coordinates
Before you convert northings and eastings you should be absolutely sure about the projection, but <http://www.mathworks.com/matl...

alrededor de 12 años hace | 0

Respondida
how to fill data in map
I disagree with the comments above. If you have the Mapping Toolbox, it's only a couple of lines in Matlab. If you have gridde...

alrededor de 12 años hace | 0

Respondida
sanfranciscos.dem.gz: Same file for Antarctica
Res--I wrote this <http://www.mathworks.com/matlabcentral/fileexchange/42353-bedmap2-toolbox-for-matlab Matlab Toolbox> to simpl...

alrededor de 12 años hace | 0

Respondida
How do to comparatively analyze 2 points of an image to distinguish them
Can you convert the image to grayscale see which point has a higher value?

alrededor de 12 años hace | 0

Respondida
What is missing from MATLAB?
I'd like a good way to stop computation when I realize I've accidentally given Matlab an impossibly large problem. Ctrl+C only ...

alrededor de 12 años hace | 0

Respondida
quiverm miscalculates some angles?
The reason it looks right when both components are positive or both are negative, is because you're tricking yourself into belie...

más de 12 años hace | 0

| aceptada

Respondida
Using a shapefile to mask a map
Some of the tools in the <http://www.mathworks.com/matlabcentral/fileexchange/42353 Bedmap2 Toolbox for Matlab> might help. Che...

más de 12 años hace | 1

Respondida
Calculating sound pressure level using microphone measurements
This is a little bit clunky, but you could <http://www.mathworks.com/matlabcentral/fileexchange/38584-butterworth-filters bandpa...

más de 12 años hace | 0

Respondida
vertices in contour matrix
The <http://www.mathworks.com/matlabcentral/fileexchange/43162 C2xyz> function may help with this.

más de 12 años hace | 0

Respondida
I have created contour plot and saved the contour matrix..But how can i get the same plot by using the contour matrix ? Does contour matrix shows the locations??
The <http://www.mathworks.com/matlabcentral/fileexchange/43162 C2xyz> function does this simply.

más de 12 años hace | 1

Respondida
wind pattern is wrong
Read the |quiverm| documentation carefully. It confoundingly defines |u| as the meridional component and |v| as the zonal compo...

más de 12 años hace | 0

Respondida
How to plot wind direction on a map using quiverm
The <http://www.mathworks.com/matlabcentral/fileexchange/17582 ncquiverref> function plots wind speed vectors properly.

más de 12 años hace | 1

Respondida
quiverm creates wrong vectors?
I recently ran into the same problem. The <http://www.mathworks.com/matlabcentral/fileexchange/17582 ncquiverref> function scal...

más de 12 años hace | 0

Respondida
Error-inducing quiverm documentation
<http://www.mathworks.com/matlabcentral/fileexchange/17582 This FEX submission> by Andrew Roberts gets it right.

más de 12 años hace | 0

| aceptada

Respondida
Using interp2 to interpolate points on a path
The loop is unnecessary. Try something like this: load('ProjectTerrain.mat') xxx = linspace(-4.8,4.8,500); yyy...

más de 12 años hace | 0

| aceptada

Respondida
Binning CTD data into 10m intervals and corresponding data in separate columns
I'm not sure if I understand your question. Do you need the data that are plotted by the |hist| function? If so, [n,...

más de 12 años hace | 0

Pregunta


Error-inducing quiverm documentation
The documentation for |quiverm| describes |quiverm(lat,lon,u,v)|, where |lat| and |lon| represent latitude and longitude, respec...

más de 12 años hace | 1 respuesta | 0

1

respuesta

Pregunta


Interpreting varargin name-value pairs.
I've been writing a lot of functions lately. I like allowing the user to declare options in my functions using name-value pairs...

más de 12 años hace | 4 respuestas | 2

4

respuestas

Respondida
Saving large matrices WITHOUT hdf5
A = rand(4,3,2,5); dlmwrite('mydata.txt',A)

más de 12 años hace | 0

Respondida
polyfit along a given dimension
Matt J's solution got me started on the right path. As it turns out, the |bsxfun| command was unnecessary. I've <http://www.ma...

más de 12 años hace | 0

| aceptada

Pregunta


polyfit along a given dimension
The |mean| function allows the user to specify a dimension along which to calculate the mean. Can I do something similar with |...

más de 12 años hace | 4 respuestas | 1

4

respuestas

Pregunta


interacting with websites from Matlab
Is it possible to enter data into forms on a website, click "send", and retrieve resulting data, all from a Matlab script? Spec...

más de 12 años hace | 2 respuestas | 2

2

respuestas

Respondida
Can I control the width of arrows using quiver command?
If it's just one arrow, this'll give you more flexibility than |quiver| : http://www.mathworks.com/matlabcentral/fileexchange/27...

más de 12 años hace | 0

Respondida
Can I control the width of arrows using quiver command?
Does this work? quiver(x,y,Ax,Ay,'linewidth',5)

más de 12 años hace | 0

| aceptada

Respondida
Vertical Line plot - change properties together
Okay, this is somewhat clunky, but here it is. For the example you give in your original question, follow it with this line: ...

más de 12 años hace | 1

| aceptada

Respondida
Vertical Line plot - change properties together
When you plot the line, assign a handle to it like this: h = line([SP SP],yL,'Color','k','LineWidth',0.5); Then you ca...

más de 12 años hace | 0

Respondida
FaceAlpha of surf plot takes the first row and column twice
Interesting. My question is, why would it make sense to define alpha at vertices? By that I mean, the alphadata is defined for...

más de 12 años hace | 0

Respondida
find indices of string matches from a cell array by thier endings
Do it without loops to make it a bit faster: A={'aAbc' 'dgbc' 'bebd' 'fabc' 'fa ' 'abcd' 'abcdkads' 'a' 'snacks bc'}; ...

más de 12 años hace | 4

| aceptada

Respondida
fault in matlab help?
Here's the result I get. Definitely does not match the documented example. <</matlabcentral/answers/uploaded_files/10169/b...

más de 12 años hace | 0

| aceptada

Respondida
How to Output Accurate PDF from Matlab figure
Frank, Perhaps this will help? http://www.mathworks.com/matlabcentral/fileexchange/45952-circle-plotter Follow the circl...

más de 12 años hace | 0

Cargar más