Beantwortet
I want to assign values from a 1d array to 2d array. How should I do it?
You have not assigned a value to _x_. Maybe you meant: for s=2:m x = tridiagonal(n); % assign x! for t=1:n w(...

fast 13 Jahre vor | 0

| akzeptiert

Beantwortet
How to choose wavelet family for EEG?
For EEG feature exctraction one frequently chooses a wavelet family that yields decomposition results, roughly matching the _cla...

fast 13 Jahre vor | 0

| akzeptiert

Beantwortet
how to find standart devuation of biological data
You could fit a Gaussian Mixture Model (GMM) with two Gaussians to the data using the Expectation Maximziation (EM-) Algorithm a...

fast 13 Jahre vor | 0

| akzeptiert

Beantwortet
how to save string values in matfile
If _label_ is a matrix of doubles you are trying to mix types in a matrix using label(1,1:44) = {'0'}; Instead, create a...

fast 13 Jahre vor | 0

| akzeptiert

Beantwortet
Error while evaluating uicontrol Callback (GUI_handle problem)
The code you posted is incomprehensibly formatted. However, my guess is, that you did a function call, that changes the hand...

fast 13 Jahre vor | 2

| akzeptiert

Beantwortet
I want to spit EEG signals in four equal parts?
If your EEG data is in the (65 x 1600) matrix named _signal_ do: p1 = signal(:,1:400); p2 = signal(:,401:800); p3 = sign...

fast 13 Jahre vor | 0

Beantwortet
wavelet decomposition of a signal
Use _wavedec()_ to calculate the wavelet decomposition and _wenergy_ to extract the energie in the decomposition. e.g.: ...

fast 13 Jahre vor | 1

Beantwortet
MATLAB engine , C++ and MATLAB .dll files
If you are calling the Matlab engine, Matlab has to be installed on the target machine. If you have the Compiler Toolbox you can...

fast 13 Jahre vor | 1

| akzeptiert

Beantwortet
Filling one vector with elements of another
vector = repmat(Ua', [16, 1]); vector = vector(:);

fast 13 Jahre vor | 0

| akzeptiert

Beantwortet
how to scale the array type double of range [-1,1] to [0,1] and [0,360] to[0,1]
The following scales array x from any range to [0, 1] scaled = x - min(x); scaled = scaled / max(scaled);

fast 13 Jahre vor | 1

Beantwortet
resampling signals in matlab 2012b
If you have the Signalprocessing Toolbox use _resample()_ or _decimate()_ If not, look at _interp1()_

fast 13 Jahre vor | 0

Beantwortet
i'm trying to enhanced image by gaussian high pass filter but it can't work... can you help me to repair my program? thangkyou before
As you are using imshow I'm guessing you have the image processing toolbox installed. In that case you might as well use the _im...

fast 13 Jahre vor | 0

| akzeptiert

Beantwortet
access the elements in a matrix given the column indexes
how about diag( x(:, y) )

fast 13 Jahre vor | 0

Beantwortet
How to compile a GUI for win32 using MATLAB and win 64.
I had the same problem a few days ago. Short answer: you can't build a 32Bit executable from a 64Bit Matlab. Instead: install ad...

fast 13 Jahre vor | 0

| akzeptiert

Beantwortet
What is the use of repmat in the following program?
If none of the dimensions of I equal 512 (for some reason) it is repeated and the copied matrix is added horizontally to I. ...

fast 13 Jahre vor | 0

Beantwortet
Compiled DLL doesn't work on target machine
I managed to work around the problem by adding two entries to the system's path variable: [Matlab Compiler Runtime Path]\[ve...

fast 13 Jahre vor | 0

| akzeptiert

Frage


Compiled DLL doesn't work on target machine
Hello I've built a DLL using the Matlab Compiler Toolbox, which I would now like to integrate into a Visual Studio project. E...

fast 13 Jahre vor | 2 Antworten | 0

2

Antworten