Cell contents reference from a non-cell array object
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
hi im running this function like this, but there was an error, anyone can help?
>> DBFBA(model,10,'EX_succ(e)','Ex_glc(e)',10)
Cell contents reference from a non-cell array object.
Error in DBFBA (line 35)
if(~ ismember(list{i}, model.rxns)), rxnok = 0; end
here i attached the full coding of the function. i really hope that someone can help me run this function without errors.
0 commentaires
Réponses (2)
Walter Roberson
le 17 Déc 2015
You are calling the code incorrectly. Your second parameter, which you pass as 10, needs to be a cell array, each entry of which must be in the model gene list or the model reaction list (all of the entries must be the same type.)
0 commentaires
Guillaume
le 17 Déc 2015
Modifié(e) : Guillaume
le 17 Déc 2015
Well, you're passing a number, 10, as the second argument to the function whereas that function is expecting a cell array.
As the function has no documentation attached, the name of the function is meaningless, and we have no idea what your inputs mean, it's difficult to tell you how to fix it short of: Pass the correct arguments to the function.
If you are the author of the function (or know the author), I would also encourage you to rewrite it so it does not use globals and divide it into subfunctions. This is not a well written function.
0 commentaires
Voir également
Catégories
En savoir plus sur Multidimensional Arrays dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!