Subscripted assignment dimension mismatch
Numerical Bifurcation Analysis Toolbox in Matlab
Brought to you by:
hilmeijer,
willy_govaerts
I have meanwhile found one reason for that behaviour: The array gds.BranchParams might get corrupted by trying to select an BP (branch parameter). The culprit is the usage of str2double in BranchPar.m, which causes a NaN entry in gds.BranchParams.
In BranchParLP.m the function str2num is used instead and that works.
(In my opinion the implemented procedure to deal with the entries in BranchParams is too complicated: First the old state is written to a string, the new entry is appended to this string, then the string is converted back to an array of numbers and sorted. Why not just append the new BP to the array and sort it?)