Risposto
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...

oltre 11 anni fa | 0

Risposto
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 ...

oltre 11 anni fa | 8

Risposto
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 ...

oltre 11 anni fa | 0

Risposto
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...

oltre 11 anni fa | 0

| accettato

Domanda


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...

oltre 11 anni fa | 2 risposte | 0

2

risposte

Risposto
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/...

oltre 11 anni fa | 0

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

oltre 11 anni fa | 0

| accettato

Risposto
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...

oltre 11 anni fa | 0

| accettato

Risposto
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 ...

oltre 11 anni fa | 0

Risposto
How to run 3D FFT?
Have you checked out *fftn*?

oltre 11 anni fa | 0

Risposto
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...

oltre 11 anni fa | 0

| accettato

Risposto
[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), ...

oltre 11 anni fa | 0

Risposto
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...

oltre 11 anni fa | 0

Domanda


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...

oltre 11 anni fa | 3 risposte | 1

3

risposte

Risposto
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; ...

oltre 11 anni fa | 0

Risposto
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...

oltre 11 anni fa | 0

| accettato

Risposto
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...

oltre 11 anni fa | 1

| accettato

Risposto
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...

oltre 11 anni fa | 0

Risposto
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...

oltre 11 anni fa | 0

| accettato

Risposto
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 ...

oltre 11 anni fa | 0

Risposto
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...

oltre 11 anni fa | 0

Risposto
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...

oltre 11 anni fa | 0

Risposto
[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 ...

oltre 11 anni fa | 1

Risposto
FFT
Your first amplitude represents 0 frequency. When your data has 0 mean, your first amplitude should also be 0.

quasi 12 anni fa | 0

Risposto
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...

quasi 12 anni fa | 0

| accettato

Risposto
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...

quasi 12 anni fa | 0

Risposto
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...

quasi 12 anni fa | 1

| accettato

Risposto
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...

quasi 12 anni fa | 0

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

quasi 12 anni fa | 2

| accettato

Risposto
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...

quasi 12 anni fa | 0

| accettato

Carica altro