回答済み
looking for an efficient way to activate all fprintf in the function
Probably not what you are looking for, but a quick way may be to just do a search and replace all (i.e., search for: "fprintf" r...

12年以上 前 | 0

回答済み
How to manipulate Plot Legend to show markers and colours seperatly?
It can be done... you will have to do some finagling, but it can be done. Here is an example where we have 2 different datasets ...

12年以上 前 | 8

回答済み
How to check if a file of certain type exists in folder?
You could try doing something like: dir_struct = dir( fullfile(your_path,'*pdf') ); if numel(dir_struct) == 0 % then ...

12年以上 前 | 0

回答済み
Plotting lognormal data on this type of graph?
The key ended up being *norminv*. Here is an example output of the program I made (see below for *probit* function): >> pro...

12年以上 前 | 0

| 採用済み

質問


Plotting lognormal data on this type of graph?
I would like to plot data on a graph similar to that illustrated in the figure below (except it is upside-down from my conventio...

12年以上 前 | 2 件の回答 | 0

2

回答

回答済み
I have a rather large matrix. The data was sampled at 100 Hz. I want to the data to look like it was sampled at 5 Hz
Use *resample* - This is an example of why you may not want to take every Nth amplitude: <<https://lh5.googleusercontent.com/...

12年以上 前 | 0

回答済み
use FFT in matlab and get phase plot
Here are the frequencies associated with the output from FFT: Nt = % Number of time samples Fs = ...

12年以上 前 | 0

| 採用済み

回答済み
Area of a Spectrum
The area under your curve should just be: N = numel(x); dt = 1/fs; df = fs/N; y = fft(x)*dt; area_y = sum(abs(y))*d...

12年以上 前 | 0

| 採用済み

回答済み
How to get back complete signal after doing IFFT
Can you provide an example of how you are performing the fft? Something like: a = your_dataset_in_the_time_domain; size_a ...

12年以上 前 | 0

回答済み
How to run 3D FFT?
Have you checked out *fftn*?

12年以上 前 | 0

回答済み
ifft and fft problem
Did you mean to use "fs_s" instead of "f_s" here: h1_s_hat = abs(fs_s.*ifft(ifftshift(h1_s_FT))); I guess that's why you...

12年以上 前 | 0

| 採用済み

回答済み
[DISCONTINUED] MATLAB Answers Wish-list #2 (and bug reports)
I kind of wish that when we scrolled through the answers to questions (especially when there are many "answers" like this one), ...

12年以上 前 | 0

回答済み
Is there a built-in function that determines whether X/Y coordinates give valid polygon?
My attempt: % Assume polygon is valid answer = 1; % Set tolerance tol = 0.001; % Random set...

12年以上 前 | 0

質問


Is there a built-in function that determines whether X/Y coordinates give valid polygon?
If I have a vector of X-coordinates and a vector of Y-coordinates, is there a function that determines whether a valid polygon i...

12年以上 前 | 3 件の回答 | 1

3

回答

回答済み
How do you centre your plot at '0' on the X-axis after performing a Fourier transform?
*fftshift* might be what you are looking for. Does this example help? dt = 0.1; % Fs = 1/dt; N = 16; t = (0:N-1)*dt; ...

12年以上 前 | 0

回答済み
how is a Shock response spectrum estimated
You might take a look at this FEX submission: <http://www.mathworks.com/matlabcentral/fileexchange/7398-shock-response-spectr...

12年以上 前 | 0

| 採用済み

回答済み
2D spectral energy density using fft2 - energy in spatial domain unequal to that in wavenumber domain
*[EDIT 7/06]* M=8;N=16; N=8;M=16; dx=0.1;dy=0.2; f = randn(M,N); % Energy in time domain energy_f = sum(sum(f.^2...

12年以上 前 | 1

| 採用済み

回答済み
How can I choose a subset of k points the farthest apart?
Added a few more tests (including your latest) and added your data (instead of just random dataset), which may be of interest. R...

12年以上 前 | 0

回答済み
Simple question for GUI
Also wanted to add a good resource for those who want to learn how to program a variety of things in Matlab GUIs: <http://www...

12年以上 前 | 0

| 採用済み

回答済み
Bandpass Filter By Using Butter
Okan - Ambient noise is like random noise... the frequency domain response (if you were to plot the abs of the frequency domain ...

12年以上 前 | 0

回答済み
How can I choose a subset of k points the farthest apart?
Went with a "simple" way - tried to maximize the sum of the distances between each point in the sub-set of "n" below (similar to...

12年以上 前 | 0

回答済み
Legend Problem
Matlab is only doing what you tell it to. One of the places where you define your figure, you have your "hold on" just after you...

12年以上 前 | 0

回答済み
[DISCONTINUED] MATLAB Answers Wish-list #2 (and bug reports)
Has someone already addressed the change from having our most recent answers listed first to (now) where our oldest answers are ...

12年以上 前 | 1

回答済み
FFT
Your first amplitude represents 0 frequency. When your data has 0 mean, your first amplitude should also be 0.

12年以上 前 | 0

回答済み
derivative using FFT properties
Based on the website below: <http://www.cl.cam.ac.uk/teaching/2000/ContMaths/JGD-notes/node11.html> I believe you would do...

12年以上 前 | 0

| 採用済み

回答済み
cycles/pixel to cycels/degree
See this link: <http://www.cogs.susx.ac.uk/courses/acv/matlab_demos/fft_image_demo.html> About half way down: F = fft...

12年以上 前 | 0

回答済み
FFT of an image
See my answer here for a coded up description of what the 2D Fourier transform does using a random 2D image as an example (shoul...

12年以上 前 | 1

| 採用済み

回答済み
why real part of fft (exp(at)) is negative in some parts in contrary to analytical calculation of fft(exp(at))?
Try plotting the *abs* result from FFT. Basically, you will not get a purely real, all positive frequency spectrum unless your t...

12年以上 前 | 0

回答済み
Area of a triangle
How about *polyarea*? >> x = [0, 0, 4]; >> y = [0, 3, 0]; >> area1 = polyarea(x,y) area1 = 6 >> area2 =...

12年以上 前 | 2

| 採用済み

回答済み
fft2: Frequency and wavenumber
Take a look at my post here for an idea of what is output from FFT2: <http://www.mathworks.com/matlabcentral/answers/24965-ff...

12年以上 前 | 0

| 採用済み

さらに読み込む