Mega Search
23.2 Million


Sign Up

Make a donation  
Undefined function 'Undefined' for input arguments of type '  
News Group: comp.soft-sys.matlab

I have been trying to use following functions but it comes up with error message. 

duration =0.05; % 10ms for BAEP, 500ms for P300, 250ms for EEG, 50ms for SSEP
samples = 640; %500  or 1000 samples (plus defined centrepoint)
samplingInterval = duration/samples;
bandwidth = 3e3;% 3kHz -BAEP & SSEP , 200Hz - EEG & P300, 

time = linspace (0, duration, samples);
freq = linspace (-bandwidth, bandwidth, 640);
% freq = linspace (-1.0e3, 1.0e3, 500);alternative baseline
fourierSpace = fftshift(ifft(norm_relbow_motor1a));
plot (freq, abs(fourierSpace))


Undefined function or variable 'norm_relbow_motor1a'.

When I tried with F9 function Key it came up with following error message.
Undefined function 'Undefined' for input arguments of type 'char'

Is anyone can who can help me in this regard, I will highly appreciate.

Regards

Kim

Vote for best question.
Score: 0  # Vote:  0
Date Posted: 27-Aug-2016, at 12:48 AM EST
From: kimshah077
 
Re: Undefined function 'Undefined' for input arguments of ty  
News Group: comp.soft-sys.matlab
On 08/27/2016 2:48 AM, kimshah077 wrote:
> I have been trying to use following functions but it comes up with error message.
....

> fourierSpace = fftshift(ifft(norm_relbow_motor1a));
> plot (freq, abs(fourierSpace))
>
>
> Undefined function or variable 'norm_relbow_motor1a'.
....

This is the same problem with likely the same solution as the other -- 
you've not got the data loaded yet.

---
This email has been checked for viruses by Avast antivirus software.
https://www.avast.com/antivirus


Vote for best answer.
Score: 0  # Vote:  0
Date Posted: 27-Aug-2016, at 8:23 AM EST
From: dpb