답변 있음
How to Output Accurate PDF from Matlab figure
Oh, interesting. I see the problem now, but is this a pdf issue, or an issue with the filled circle function? Perhaps simply c...

12년 초과 전 | 0

답변 있음
type of variable "m" changes (i.e int or [ ] ) while running a program using different datasets
Is |Label_size| defined before this bit of code?

12년 초과 전 | 0

답변 있음
How to Output Accurate PDF from Matlab figure
I highly recommend switching to export_fig instead of using print. Here's export_fig: http://www.mathworks.com/matlabcentral/fi...

12년 초과 전 | 0

답변 있음
How to remove the low frequencey in a data set.
You could use the hipass_butterworth function from this set if you have the signal processing toolbox: http://www.mathworks.com/...

12년 초과 전 | 1

| 수락됨

답변 있음
Populating graph titles for multiple figures
Or if you want subplots, x = data_of_interest; for n = 1:ll figure(n) % Axial Load subplot(2,1,1) plot...

12년 초과 전 | 2

답변 있음
Populating graph titles for multiple figures
for n = 1:ll figure(n) % insert calculations and figure plotting here. title(['Rod ',num2str(n),' Axial ...

12년 초과 전 | 1

| 수락됨

질문


logicals and replacing values in 3D matrices
I have three matrices. Their sizes are as follows: |x| is m x n. |y| is m x n. |z| is m x n x q. I can redefine...

12년 초과 전 | 답변 수: 1 | 0

1

답변

답변 있음
What's the most efficient way to isolate a connected region in a binary image given a point contained within that region?
Have you looked at the bwboundaries function?

12년 초과 전 | 1

답변 있음
IF Statements - case sensitive
Try the strcmpi function.

12년 초과 전 | 0

답변 있음
Eliminated zero value in the matrix.
dist2 = repmat(dist(~eye(size(dist))),1,7)

12년 초과 전 | 0

질문


Interpolation and missing values
I have a series of data given by an x array and a corresponding y array. The arrays are equal in size. The x array is approxim...

12년 초과 전 | 답변 수: 1 | 0

1

답변

답변 있음
help in a matrix
This function returns an array that is the row of your matrix times five. function [out] = mynewfunction(matrix,row); ...

12년 초과 전 | 0

답변 있음
Combining arrays to form indices
I like dpb's solution. My slower, clunkier solution would have required a loop: A = [1 10 15 25 35]; B = [5 13 18 31 52...

12년 초과 전 | 0

답변 있음
Smoothing noisy increasing measurement/calculation
A moving average should do it. You'll lose some temporal resolution, but if the noise is gaussian then a moving average will fo...

12년 초과 전 | 0

| 수락됨

답변 있음
Do I need to use repmat to plot the RMS at every point in a signal?
The rms of a single point is not terribly interesting. There are many ways to do what you're trying to do, but you could take a...

12년 초과 전 | 0

질문


how to find elements in an array
Given this: x = 1:100; y = 201:300; a = 250; I know that x(y==a) will return 50, the value of |x| corr...

12년 초과 전 | 답변 수: 2 | 0

2

답변

질문


any way to avoid this loop?
I'm familiar with the benefits of vectorizing code, but is there a way to avoid a loop when the solution to each value in an arr...

12년 초과 전 | 답변 수: 1 | 1

1

답변

제출됨


deseason
Remove the seasonal signal from a daily time series of data.

12년 초과 전 | 다운로드 수: 1 |

0.0 / 5
Thumbnail

제출됨


dlim
set date limits like they're x limits.

12년 초과 전 | 다운로드 수: 1 |

0.0 / 5

질문


How do I clear up some memory?
When I run computationally-intensive scripts, memory usage goes up and my computer slows down a little bit. This is to be expec...

12년 초과 전 | 답변 수: 1 | 0

1

답변

질문


Get contour matrix without plotting?
I have a big gridded dataset |Z| and I want to create a contour matrix |C| from it. I need contours at many levels, -100:2:100....

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

1

답변

질문


maximizing efficiency in simple commands
I have an array given by x = [1 2 3 4]; I would like to create a matrix that looks like M = [1 2 3 4; 1 ...

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

2

답변

제출됨


ntitle
Place a title inside a plot. Reduces title/xlabel ambiguity in figures with multiple subplots.

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

4.83333 / 5
Thumbnail

제출됨


clip
Return the values of an array within a given range, optionally return corresponding clipped arrays.

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

3.0 / 5
Thumbnail

답변 있음
The "Did you mean..." routine
It's not exactly what I want, but this is close enough to work for me: % given the input aclass: aclass = 'algebra 1';...

거의 13년 전 | 0

| 수락됨

질문


The "Did you mean..." routine
Is there a way to access the routine that looks for approximate string matches? I have an n x 1 cell array. I know how to sear...

거의 13년 전 | 답변 수: 4 | 3

4

답변

답변 있음
VideoWriter clipping my axes
I figured out the fix: getframe(gcf,[left bottom width height]), using the figure position from get(gcf).

거의 13년 전 | 1

| 수락됨

질문


represent a volume given two surfaces
I have two surfaces given by the grids X, Y, Z1 and X, Y, Z2. Both Z grids share the same X and Y grids. I can plot each Z sur...

대략 13년 전 | 답변 수: 1 | 0

1

답변

질문


VideoWriter clipping my axes
I'm using the VideoWriter feature for a simple animation of motion of a 3-D surface. Running through the loop, I can see in my ...

대략 13년 전 | 답변 수: 2 | 1

2

답변

제출됨


ccc
close all; clear all; clc;

대략 13년 전 | 다운로드 수: 1 |

0.0 / 5

더 보기