질문


What do fspecial image filtering parameters mean?
I would like to high-pass-filter an image to get rid of wavelengths longer than about 30 pixels. Here is what I am trying: ...

거의 12년 전 | 답변 수: 1 | 0

1

답변

답변 있음
What does "Vectors must be the same lengths." mean?
I'm guessing that there's a variable in testtrace.mat called t, and another variable called tracefar. If you type length(t) int...

거의 12년 전 | 2

답변 있음
where is the mistake in this code?
I'm not sure if this is a coincidence, but you've bolded two of the mistakes. There's an |0.5 t| and a |2(D*t)|. Did you mean ...

거의 12년 전 | 0

답변 있음
Show time labels on points in a quiver plot (inside the plot)
I don't think |quiver| has any built-in labeling capabilities, but you could manually add text to any location(s) with |text(x,y...

거의 12년 전 | 0

| 수락됨

답변 있음
How can I achieve trasparency in video output fiiles ?
Can you use <http://www.mathworks.com/matlabcentral/fileexchange/23629-export-fig |export_fig|>? The syntax would be something l...

거의 12년 전 | 0

질문


changing map projection after plotting data
I can initialize a map, set its projection properties with |axesm|, and plot data. This works well. If I plot data then try to...

거의 12년 전 | 답변 수: 1 | 0

1

답변

답변 있음
Plot and legend colors don't match
You could use <http://www.mathworks.com/matlabcentral/fileexchange/47550-legalpha/content/legalpha_documentation/html/legalpha_d...

거의 12년 전 | 1

답변 있음
How to extract x and y data from fitted curve of a histogram?
|h = histfit(...)| returns a vector of handles |h|, where |h(1)| is the handle to the histogram and |h(2)| is the handle to the ...

거의 12년 전 | 3

| 수락됨

답변 있음
Help in finding values between limits
John D'Errico's <http://www.mathworks.com/matlabcentral/fileexchange/18937-ipdm--inter-point-distance-matrix |ipdm|> function is...

거의 12년 전 | 0

제출됨


Plot Antarctic Circumpolar Current Fronts
Plot the locations of the major fronts associated with the Antarctic Circumpolar Current.

거의 12년 전 | 다운로드 수: 1 |

0.0 / 5
Thumbnail

질문


What is changing in R2014b?
Is there a published list of features that are changing with Matlab R2014b? I have been unable to install the pre-release, but ...

거의 12년 전 | 답변 수: 7 | 0

7

답변

답변 있음
How to get RMS from timeseries
I don't know much about simulink, but if you have the Signal Processing Toolbox there's an |rms| function. It's also not terrib...

거의 12년 전 | 0

답변 있음
plotting circles
<http://themathworks.com/matlabcentral/fileexchange/45952-circle-plotter/content/circles_demo/html/circles_documentation.html Th...

거의 12년 전 | 0

제출됨


quivermc
Plot georeferenced vector fields with color options.

거의 12년 전 | 다운로드 수: 1 |

4.4 / 5
Thumbnail

답변 있음
axis position and insets
I found a <http://www.mathworks.com/matlabcentral/fileexchange/9615-plotboxpos/content/plotboxpos.m perfect solution> provided b...

거의 12년 전 | 0

| 수락됨

질문


Using export_fig with publish
I've been using the |publish| feature a lot lately, but the figures it produces are absolutely lousy. Is there a way to tell |p...

거의 12년 전 | 답변 수: 1 | 1

1

답변

질문


axis position and insets
I am having trouble getting insets to match the dimensions of my figure window. For any given figure I'd like to get the curren...

거의 12년 전 | 답변 수: 1 | 0

1

답변

답변 있음
Calculate components of a vector along a line
Do you have the x,y,z components of the two points? If yes, you could say that x2-x1 is the x component. You could then normal...

거의 12년 전 | 0

제출됨


whynot
For when you've been staring at the command window for a little too long.

거의 12년 전 | 다운로드 수: 1 |

0.0 / 5
Thumbnail

답변 있음
How to overlay vectors that are centered at particular pixel locations
If your vector data are gridded, <http://www.mathworks.com/matlabcentral/fileexchange/17582-ncquiverref |ncquiverref|> does it n...

거의 12년 전 | 1

| 수락됨

질문


wrap text with disp.
The |error| command wraps text to fit the width of the command window, but |disp| does not. I know I can put in hard-wired new ...

거의 12년 전 | 답변 수: 2 | 0

2

답변

답변 있음
handling with time in the matlab function
Will |pause(60)| do what you need?

거의 12년 전 | 0

답변 있음
How to plot a line of a certain color?
|plot(x,y,'*','color','blue')| plots in blue. |plot(x,y,'*','color',[.5 .4 .7])| plots the RGB value [.5 .4 .7]. If you want l...

거의 12년 전 | 19

| 수락됨

답변 있음
How to get data from contour
<http://www.mathworks.com/matlabcentral/fileexchange/43162-c2xyz-contour-matrix-to-coordinates |C2xyz|> converts the contour mat...

거의 12년 전 | 0

질문


Example 3D netcdf data
I am writing a help file that would benefit from some example data in netcdf format. The data should be in the form of a 3D mat...

거의 12년 전 | 답변 수: 1 | 0

1

답변

답변 있음
Script which creates overlapping histograms?
<http://www.mathworks.com/matlabcentral/fileexchange/47552-histf/content/histf_documentation/html/histf_documentation.html |hist...

거의 12년 전 | 0

답변 있음
Histogram of 2 sets of data in same plot, different columns, same bin
Instead of plotting the bars side by side, have you considered plotting them on top of each other and adjusting transparency? T...

거의 12년 전 | 3

답변 있음
adjustment of the histogram bar's thickness
Or <http://www.mathworks.com/matlabcentral/fileexchange/47552-histf/content/histf_documentation/html/histf_documentation.html |h...

거의 12년 전 | 0

제출됨


histf
Simply produce histograms formatted the way you like them.

거의 12년 전 | 다운로드 수: 4 |

5.0 / 5
Thumbnail

제출됨


legalpha
legend with support for patch transparency.

거의 12년 전 | 다운로드 수: 2 |

4.6 / 5
Thumbnail

더 보기