Beantwortet
Where is the list of all possible MATLAB toolboxes can be found?
Hi Steve, please see this link <http://www.mathworks.com/products/index.html?s_tid=hp_fp_viewall MathWorks Products>

mehr als 12 Jahre vor | 2

| akzeptiert

Beantwortet
Normalized Cross correlation, Normalized autocorrelation
If you have the Signal Processing Toolbox, use xcorr(). I'll assume your -GolaySec above is a typo and should read -Golayseq ...

mehr als 12 Jahre vor | 0

Beantwortet
Why is the formatting of my MATLAB documentation broken?
Hi Otto, if you look in your matlab/help directory, do you see the following files? basecodes.properties docstyle1.css ...

mehr als 12 Jahre vor | 0

Beantwortet
out of memory with [c,s]=wavedec2()
Are you saying that wavedec2() throws a memory error on a single call with a 512x512? For example, this does not cause a memo...

mehr als 12 Jahre vor | 0

Beantwortet
how to determine a period for sinewave
You can use fft() as one way. Here's an example with a 100-Hz sine wave (sampled at 1 kHz). Fs = 1000; % sampling ra...

mehr als 12 Jahre vor | 1

Beantwortet
What is multiresolution direction fiterbank
Professor Do has MATLAB software available for this: <http://www.ifp.illinois.edu/~minhdo/software/ Minh N. Do: Software> ...

mehr als 12 Jahre vor | 0

Beantwortet
Going from the time doain to the frequncy domain, why the amplitude of the signal is increased?
You're missing the scaling of the fft() output by the length of the input signal. That is likely the biggest contributor to why ...

mehr als 12 Jahre vor | 0

Beantwortet
How to define a function to run a particular .m file
You can simply call a defined function inside of another function. As long as both are on the MATLAB path. If the user pass...

mehr als 12 Jahre vor | 0

Beantwortet
How to choose 2 people randomly among 12 ?
Group={'ae','bk','cn','es','fh','hv','mh','ol','sd','sg','ss','ts'}; idx = randperm(12,2); ind = setdiff(1:lengt...

mehr als 12 Jahre vor | 0

Beantwortet
Remove redundancy values from matrix
S=[2 3 4 5 4 4 4;2 3 4 2 3 4 5;3 4 4 5 5 2 3]; S1 = unique(S);

mehr als 12 Jahre vor | 0

| akzeptiert

Beantwortet
implementing a "first difference" filter in Matlab defined by a difference equation.
No, I just mean filter(). A causal N-point moving average filter just has filter coefficients of 1/N b = 1/N*ones(N,1...

mehr als 12 Jahre vor | 1

Beantwortet
How to choose 2 people randomly among 12 ?
Group={'ae','bk','cn','es','fh','hv','mh','ol','sd','sg','ss','ts'}; idx = randperm(12,2); Group{idx} I think you wa...

mehr als 12 Jahre vor | 0

| akzeptiert

Beantwortet
implementing a "first difference" filter in Matlab defined by a difference equation.
Why do you believe it's a second order difference equation? Since it is a homework problem, I do not want to simply give you ...

mehr als 12 Jahre vor | 0

Beantwortet
Finding peaks in a data set
I would first ensure you are using MathWorks' findpeaks(). If you enter >>which findpeaks do you get something back like...

mehr als 12 Jahre vor | 0

Beantwortet
How is it possible to tell if systems are linear, non-linear or time-invariant?
This is not a MATLAB question. You can simply tell in these cases by checking whether the operator satisfies the superposition a...

mehr als 12 Jahre vor | 0

| akzeptiert

Beantwortet
Extracting Spatial frequency from fourier transform (fft2 on Images)
If you have a simple 2-D complex exponential x = 0:159; y = 0:159; [X,Y] = meshgrid(x,y); Z = exp(1i*pi/4*(X+Y)); ...

mehr als 12 Jahre vor | 1

Beantwortet
matrix transformation to make the values of second row to be lower to higher
I'm not sure I quite understand what you're doing from your description, but D = [0.3,0.5,0.2;0.3,-0.1,0.7]; [...

mehr als 12 Jahre vor | 0

| akzeptiert

Beantwortet
How to integrate two columns of data in MAT LAB
Since you are on an older release, how about using dblquad() instead?

mehr als 12 Jahre vor | 0

Beantwortet
How Can i Produce a Random mxn Matrix, with pre -specified set of integers?!
X = randi([0 1],20,20); X(X==0) = -1;

mehr als 12 Jahre vor | 0

| akzeptiert

Beantwortet
Why does periodogram varies with data length?
In R2012a, you can use spectrum.periodogram and then msspectrum Fs = 1000; t = 0:1/Fs:2-1/Fs; x = 0.5*cos...

mehr als 12 Jahre vor | 0

Beantwortet
How to add AWGN white noise in a 2d vector
I think you should try casting the mixd_ocr matrix to double. mixd_ocr = double(mixd_ocr); If you execute clas...

mehr als 12 Jahre vor | 1

| akzeptiert

Beantwortet
Why does periodogram varies with data length?
Because the periodogram is strictly a PSD estimate unless you specify the 'power' option. By doubling the time interval you are ...

mehr als 12 Jahre vor | 0

| akzeptiert

Beantwortet
FFT amplitude scaling - sample frequency/sampling period, number of input samples, transform length, or none of the above?
Do you have the Signal Processing Toolbox in 13a or 13b? If so, then use periodogram() with the 'power' option. That will do thi...

mehr als 12 Jahre vor | 0

Beantwortet
finding mse and hence quantifying the quality of an image
The Wavelet Toolbox has a function for this measerr(), but it's easy enough to do. Suppose that X is your image and Xapp is the ...

mehr als 12 Jahre vor | 0

Beantwortet
Undefined function or method 'som_read_data' for input arguments of type 'char'.
Did you make sure that you added the directories for the SOM Toolbox to your MATLAB path? You can use pathtool() to add them....

mehr als 12 Jahre vor | 0

| akzeptiert

Beantwortet
Difference between spearmann correlation and fit command
I would not put any faith in the correlation coefficient, the p-value is 0.9 and the reported rho is close to 0.

mehr als 12 Jahre vor | 0

Beantwortet
If I have a periodic function piecewise, I could calculate THD Total Harmonic Distortion for it?
The Signal Processing Toolbox has a function that will do that for you, thd() thd() is new in R2013b.

mehr als 12 Jahre vor | 0

| akzeptiert

Beantwortet
How do I view the format of a sample data in matlab e.g. "load readmissiontimes" (survival analysis)
The variables in that .mat file are: Age 100x1 800 double Censored ...

mehr als 12 Jahre vor | 0

| akzeptiert

Beantwortet
Error message when using plot command: "Subscript indices must either be real positive integers or logicals"
The above code should execute properly Kelsey. Perhaps you have a variable named linspace() in your workspace? If you execute...

mehr als 12 Jahre vor | 0

Beantwortet
Replacing values within a row of matrix with a vector?
There are a number of ways a = [ 1 0 1 0;... 1 1 0 1;... 0 1 1 0;... 1 1 0 0]; ...

mehr als 12 Jahre vor | 0

| akzeptiert

Mehr laden