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

mer än 10 år ago | 0

| accepted

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

mer än 10 år ago | 0

| accepted

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

mer än 10 år ago | 0

| accepted

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

mer än 10 år ago | 0

| accepted

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

mer än 10 år ago | 2

| accepted

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

mer än 10 år ago | 0

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

mer än 10 år ago | 1

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

mer än 10 år ago | 1

| accepted

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

mer än 10 år ago | 0

| accepted

Answered
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);

mer än 10 år ago | 1

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

mer än 10 år ago | 0

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

mer än 10 år ago | 0

| accepted

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

mer än 10 år ago | 0

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

mer än 10 år ago | 0

| accepted

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

mer än 10 år ago | 0

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

mer än 10 år ago | 0

| accepted

Question


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

mer än 10 år ago | 2 answers | 0

2

answers