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

circa 13 anni fa | 0

| accettato

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

circa 13 anni fa | 0

| accettato

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

circa 13 anni fa | 0

| accettato

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

circa 13 anni fa | 0

| accettato

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

circa 13 anni fa | 2

| accettato

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

circa 13 anni fa | 0

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

circa 13 anni fa | 1

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

circa 13 anni fa | 1

| accettato

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

circa 13 anni fa | 0

| accettato

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

circa 13 anni fa | 1

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

circa 13 anni fa | 0

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

circa 13 anni fa | 0

| accettato

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

circa 13 anni fa | 0

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

circa 13 anni fa | 0

| accettato

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

circa 13 anni fa | 0

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

circa 13 anni fa | 0

| accettato

Domanda


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

circa 13 anni fa | 2 risposte | 0

2

risposte