Problem in datastrm.m or getfield.m
Page 1 of 1
Problem in datastrm.m or getfield.m
Dear Sir
Some problem message happened in Matlab, while I am trying to access the .mcd data.
------------------------------------------------------------------
??? Maximum recursion limit of 1000 reached. Use set(0,'RecursionLimit',N)
to change the limit. Be aware that exceeding your available stack space can crash MATLAB and/or your computer.
Error in ==> U:\sunMainz65\getfield.m
On line 24 ==> field=getfield(ds, name);
??? Error while evaluating uicontrol CreateFcn.
-------------------------------------------------------------------
Could you help me to solve this problem? And if you need my program, please let me know.
Thanks for you help again.
Sincerely
Jyh-Jang Sun
sunj@uni-mainz.de
Some problem message happened in Matlab, while I am trying to access the .mcd data.
------------------------------------------------------------------
??? Maximum recursion limit of 1000 reached. Use set(0,'RecursionLimit',N)
to change the limit. Be aware that exceeding your available stack space can crash MATLAB and/or your computer.
Error in ==> U:\sunMainz65\getfield.m
On line 24 ==> field=getfield(ds, name);
??? Error while evaluating uicontrol CreateFcn.
-------------------------------------------------------------------
Could you help me to solve this problem? And if you need my program, please let me know.
Thanks for you help again.
Sincerely
Jyh-Jang Sun
sunj@uni-mainz.de
mcs- Posts : 518
Join date : 2008-06-10
Re: Problem in datastrm.m or getfield.m
Dear Jyh-Jang,
you can use the getfield function only in conjunction with certain literals. For example:
>> a = datastrm('c:\tmp\SpikeTest.mcd')
>> x = getfield(a,'filename')
x =
c:\tmp\SpikeTest.mcd
>> x = getfield(a,'StreamNames')
x =
'Spikes 2'
'Electrode Raw Data'
'Spikes 1'
>> x = getfield(a,'StreamCount')
x =
3
What is name in your function call field=getfield(ds, name) ?
Sincerely
Gerald
Multi Channel Systems
you can use the getfield function only in conjunction with certain literals. For example:
>> a = datastrm('c:\tmp\SpikeTest.mcd')
>> x = getfield(a,'filename')
x =
c:\tmp\SpikeTest.mcd
>> x = getfield(a,'StreamNames')
x =
'Spikes 2'
'Electrode Raw Data'
'Spikes 1'
>> x = getfield(a,'StreamCount')
x =
3
What is name in your function call field=getfield(ds, name) ?
Sincerely
Gerald
Multi Channel Systems
mcs- Posts : 518
Join date : 2008-06-10
Similar topics
» problem in datastrm.m
» Read mcd data in a 64bit system by matlab
» Problem about the MEA tool
» Problem with MEA_datatools
» MEA Tools problem
» Read mcd data in a 64bit system by matlab
» Problem about the MEA tool
» Problem with MEA_datatools
» MEA Tools problem
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum
|
|