Respondida
plot a signal in the freq domain
If the code is setup exactly the way you say above, then there is only one element in "f" and one element in "X". You need to do...

casi 14 años hace | 1

| aceptada

Respondida
Numerical solution
Unless I misunderstood something, I think all you need to do is change: BL = 0; to if n == 1 BL = 0; end ...

casi 14 años hace | 0

| aceptada

Pregunta


Alternative to using "unix(sprintf('ls %s/*/*/*.out',pathname))" ?
I am using the following command to gather a list of files with the same extension (*.out) down a couple directories: [~,Li...

casi 14 años hace | 3 respuestas | 0

3

respuestas

Respondida
I want to implement this matrix
>> A = zeros(4,8); >> A(:,2:2:end) = 5*eye(4,4); >> A A = 0 5 0 0 0 0 0 0 0 ...

casi 14 años hace | 1

| aceptada

Respondida
DFT
Here is another (inefficient) way of saying the same thing as Wayne by way of example: Fs = 100; % samples per second dt =...

casi 14 años hace | 0

Respondida
FFT convolution shifts resulting waveform
Yes... that can happen. If your frequency response is boosting low frequencies, then "strange" things like that can happen. Usin...

casi 14 años hace | 0

Respondida
BER of OFDM, how scale correct after IFFT?
I use the FFT for a much different problem. In my case, the time domain data are always real and the frequency domain data are a...

casi 14 años hace | 0

Respondida
FFT - am i doing anything wrong
Although the scaling performed on the result from FFT (in the example above, which is based on Matlab's FFT documentation) may b...

casi 14 años hace | 0

Respondida
Accept or Reject
Here is an example. I generate a random dataset, then I cycle through each subset of data and I enter an "A" for accepting the d...

casi 14 años hace | 0

| aceptada

Respondida
Accept or Reject
Yes. Search for "ginput" in your help navigator. You can even set it up so that pressing the button associated with "R" rejects ...

casi 14 años hace | 0

Respondida
fft scalloping or window effect
Nooooo... The FFT should be scaled by the time increment (dt = 1/fs). You apply this correction to ALL the amplitudes in the fre...

casi 14 años hace | 0

Respondida
How can the ans be surpressed so that only the fprintf will show?
Not putting a semi-colon ( ; ) at the end of a line within your code or at the end of a function call from the command line is u...

casi 14 años hace | 0

Respondida
what is the use of the symbol '*' in the function named fullfile?
It means that any file whose name is something.jpg will be used. For example if: myFolder = '/home/yourfolder'; then ...

casi 14 años hace | 0

Respondida
How to write the loop to collect data every step I want
You basically want to collect a sample at every 0.1 increment in time(?). Setup a counter before your "for" loop and initiali...

casi 14 años hace | 0

| aceptada

Respondida
please help me identufy this.. i write the program but i dont know what this program do.. this is the command.. and output..
You are defining an array that is 1 row x 9 columns with values ranging from -9 to 11. You then calculate the "size" of the arra...

casi 14 años hace | 0

| aceptada

Respondida
error-index must be a positive integer or logical.
You need to ensure all of the indices are greater than 0. When you round things (using "floor") you must be encountering values ...

casi 14 años hace | 0

Respondida
Set the Yticklabel to different colors
This not only changes the color of the tick label, it also changes the color of the specified axis: set(h,'YTickLabel','Hat...

casi 14 años hace | 1

Respondida
Find the centroid of a polygon
Check out: <http://www.mathworks.com/matlabcentral/fileexchange/319-polygeom-m>

casi 14 años hace | 0

| aceptada

Respondida
I have a matrix q and i need the diagonal of qq'
In your Help Navigator, search for "arithmetic operators" and "diag" diag(q*q') is the same as diag(q*transpose(q))...

casi 14 años hace | 0

| aceptada

Respondida
How to find a complex root from the determinate of a matrix?
Here is another example: >>a = complex(randn(1),randn(1)); b = complex(randn(1),randn(1)); c = complex(randn(1),randn(1...

casi 14 años hace | 1

Respondida
How to find a complex root from the determinate of a matrix?
You are trying to do the following, but for almost any MxM matrix and any location of x within that matrix: Example: M =...

casi 14 años hace | 0

Respondida
Error: Not Enough Input Arguments
A couple of questions: 1. How are you running this? If you are trying to run this from the Editor, then you will be running i...

alrededor de 14 años hace | 0

Respondida
FFT vs Table Fourier Pairs
Multiply your fft result by "dt". See my answer to this post for more info: <http://www.mathworks.com/matlabcentral/answers/1...

alrededor de 14 años hace | 1

| aceptada

Respondida
ifft limitations
It looks like the results are very close to being the same between column 1 and column 10: >>[z;zf] ans = Columns...

alrededor de 14 años hace | 0

| aceptada

Respondida
FFT
So, I created an example using the original un-modified code for fcoeffs_fft (located here: <http://pastebin.com/001id7SB>) and ...

alrededor de 14 años hace | 0

| aceptada

Respondida
Converting acceleration to displacement
You might need to filter your data. One of the results of going from acceleration to displacement is that you will boost low-fre...

alrededor de 14 años hace | 0

Respondida
How to square each element of a vector
y = x.^2; Using the "." will effectively perform element-by-element mathematical operations. So if you had 2 MxM matrices, ...

alrededor de 14 años hace | 20

| aceptada

Respondida
FFT
Ok... let's start over. I found a link to the "fcoeffs_fft" code (located here: <http://pastebin.com/001id7SB>). Are you trying ...

alrededor de 14 años hace | 0

Respondida
alarm for finishing running of a program
A simple way I use to get notified that processing had finished was to add a "beep" to the end of the program (I was usually in ...

alrededor de 14 años hace | 7

Respondida
Scaling the FFT and the IFFT
You are right about scaling being unimportant if only the shape of the spectrum is desired. However, if it is necessary that the...

alrededor de 14 años hace | 24

Cargar más