Science topic
Discrete Signal Processing - Science topic
Explore the latest questions and answers in Discrete Signal Processing, and find Discrete Signal Processing experts.
Questions related to Discrete Signal Processing
I see a graph as a discrete structure defined by a set of nodes and edges. A graph signal G(V,E) is defined by V=set of vertices/nodes and E= set of edges. Is graph a discrete signal?
Can signal processing on graphs be seen as a discrete signal processing?
I had 192 inputs with 48 outputs to train my network. To give a clear idea about the problem I have given the code with only four inputs and two outputs for an example.
When I try to train the network with only one element for each input and output, and three hidden neurons, network does not train. Even when I try to read the weight and bias (getwb(net)) of the trained network, it gives 3 zeros (3 is vary with the number of neurons, when it has 10 hidden neurons, getwb(net) gives 10 zeros) even though it should be equal to 23 weights and bias ((I+1)*H+(H+1)*O).
Most importantly, when I test the trained network, it gives my training target as the output with any testing input. But it shows the correct amount of weights and bias when I have more than one element for each input and target. But testing output is almost same with the last target set.
How can this happen? why it shows me only 3 weight, bias values (those are also zeros), at least where is my initial weights and bias? why it is equal to last target set when I have several elements for training inputs and targets. One thing I noticed "view(net)" shows I have 0 output layers (network diagram has been attached with this)
i = [1,2,3,4]; % 4 inputs with one element each
t = [1,2]; % 2 targets with one element each
net = feedforwardnet([3], 'trainlm'); %feedforward network with 3 hidden neurons net.layers{1}.transferFcn = 'tansig';
net.performFcn = 'mse'; net.trainParam.epochs = 100;
net.divideFcn = '';
[net, tr] = train(net, i', t'); %train the network
ut = sim(net, [[1,3,3,4]]') %testing the output
Dear experts
What is the difference between narrow-band and broad-band transducers?
I seem to be unable to duplicate the results of the following paper, in making the window function spectrum match what the author presents. (Md Abdus Samad, “A novel window function yielding suppressed mainlobe width and minimum sidelobe peak,” International Journal of Computer Science, Engineering and Information Technology (IJCSEIT), Vol.2, No.2, pp. 91-103, April 2012.) I have not been able to elicit a response from the author. Has anybody made this window work? If so, do you have a Matlab snippet that implements it?
Let sampling frequency of the given signal be 1024 samples/sec. I performed DWT decomposition using db wavelet for 5 levels, so I will get 5 levels of detailed coefficients and one approximation level coefficients. My query is, how can we calculate frequency range of the levels (5 detailed levels) of the coefficients ?
A system has been stabilised by state feedback of 2 inputs. But it requires sinusoidal inputs of high frequency which is not physically possible. The inputs cannot be continuously varied. Hence, I tried a trapezoidal signal which works only when atleast 1 of the input is of the same frequency as the sine input and the other one is 1/3rd, 1/5th (odd number divisor) of the sine frequency.
Can someone help ? Any suggestions ?
Thanks.
i want to obtain the cardiac sound characteristic waveform proposed in the paper available at following link
the equation is: C1Y2(n)+C2Y1(n)+C3Y(n)=X(n), where X(n) is input discrete signal.
I have completed a resolution 4 factorial (for 4 factors and 2 replications, 4 center points). Now during this evaluation I understood that all the 4 factor are significant and that some interactions are also significant.
- However since I utilized resolution 4, the interaction are aliased. This is forcing me to do a full factorial to de-alias the same. Moreover I found that there is signature curvature
- Now I am planning to do a full factorial and augment that experiment with some axial points utilizing face centered method. Now I know that estimating coefficients using face centered method might not be the best. But it is the easiest and most convenient given my time constraints.
Finally my question is the following- can the face centered response surface method atleast detect accurately which variable in the main effects has a square component?
Thank you all
Regards
Justin Mattam
I want to know how time-of-arrival of a signal (non-stationary) is estimated by Hilbert transformation.
Dear all,
Could anyone kindly advise how to perform wavelet transform on discrete complex frequency domain data?
Regards
We are developing a new device to perform a new type of signal processing of finger photoplethysmography. We would like to use existing off-the-shelf clip SPO2 sensor.The interface characteristics, usually a 5/6 pin connector (Red/IR led power and ground; photosensor signal and ground, shield) but I did not succeed in obtaining the specs in terms of power requirements and of output signal range.
The issue is I don't know where to begin, I only have low level embedded controller knowledge. I can afford delay in getting the signal processed. I would like to add that 12 devices are of one kind and remaining 4 are of another kind. Any help would be appreciated.
Thanks in advance
i have a signal and following the attached paper i took out the IMFS and then i found out h1 and then do we continue to find h2 , h3 and i need to know that when shall we stop ?
in the next line it is written that when the residue has one extermum then only you stop. So for that i may have to find 'n' no. of IMFS and it may take a lot of time?
what shall i do now ?
The input signal to this filter is a linear frequency modulated (LFM) signal. The high-pass filter cut-off should increase linearly with time up to a known time limit. The main idea is to filter-out a time-shifted version of an LFM signal.
I want to shift the phase of a Ricker wavelet by a constant value (i.e. 45 degree) in MATLAB.
Can anyone help me please?
I would like a method to calculate the curvature of a 2D object. Object is a matrix whit n rows (that are corresponded to n consecutive points) and 2 columns (that are corresponded to x and y coordinates).
I want to calculate this equation for my data. But the left and right side of this equation is not the same. I wright my program in matlab. Can you help me? How can I implement that?
Let x(n) is a discrete time signal. We have done the Discrete Fourier Transform of it. Then the spectrum we get in frequency domain is continuous. How it happens?
Hi all,
I have a long time-series data with a clear diurnal behavior (cyclicity). Any ideas, publications or works on how to do it? I'm thinking of a Fourier Analysis, but I wonder if anyone has dealt with this problem before?
Regards
Basically, I want to know how we define the near field and far field in terms of distance between antenna/microphone array and source.
I believe it is possible and hope to be able to share real data soon. Need feedback.
Can anyone please give an example of an unequally spaced signal? If possible please suggest me any paper regarding the understanding of USFFT and its algorithm.
Can wavelet transforms be applied to adaptive filter applications like linear prediction, echo cancellation, equalization, channel estimation etc?
I would like to know which part of mathematics has more applications in real life situations.
Some time back, I thought of having a system that takes input from a song and the output of it displays the complete music in the form of musical notes. I thought about using DFT instead of PCM. Would this work? Please let me know the efficient way of doing this.