Why do I receive an 'Invalid input argument of type 'double'. Input must be a structure or a Java or COM object' error while loading data in a simbiology fit program?
29 次查看(过去 30 天)
显示 更早的评论
I deviced a kinetic model using simbiology, simulated it and everything worked fine. Then I loaded a data set from excel containing three columns: ID, Time and concentration. I set ID as group, Time as independent and concentration as depended variables. But when I run the program it says
Invalid input argument of type 'double'. Input must be a structure or a Java or COM object.
I've also tried loading the data directly from the workspace and it gave the same error.
I converted the data to a structure and that is not listed as a valid input type while importing a dataset. I checked online tutorials and everyone seems to be able to load 'double' types.
The reaction is just A+B-->null
And dB/dt = -k*[B] and A is constant
5 个评论
Marc
2022-8-29
I'm using 2022a and still have the same issue...
Why has the bug not been sorted out yet?
Florian Augustin
2022-8-29
编辑:Florian Augustin
2022-8-29
Hi Marc,
You might be seeing a different issue with the same symptom. I just confirmed that the issue Archishman reported is fixed in R2022a. Can you share reproduction steps that lead to the error? Are you working with the general release, or do you have an update version of R2022a installed? Which operating system are you working on? If you do not want to share this information publicly on MATLAB Answers, please contact MathWorks Technical Support.
Thank you,
Florian
采纳的回答
Fulden Buyukozturk
2021-10-19
编辑:Fulden Buyukozturk
2021-10-19
Are you running R2021b and is your dataset has only one group? If so, this is likely a known bug with the app that affects datasets with no group or one group.
You could use the command-line interface fitproblem instead of the app or run the app in R2021a. Sorry for the inconvenience.
3 个评论
Fiona
2023-3-13
These are the parts of the code in the same file "BIDSFetcher.m" where it refers to obj.spacedef.name:
% Set base dir and base name
templateSpace = obj.spacedef.name;
baseName = fullfile(LeadDBSDirs.normDir, 'transformations', ['sub-', subjId, '_from-']);
"
and
% Set normalized anat images
templateSpace = obj.spacedef.name;
session = fieldnames(coregAnat);
for i=1:length(session)
modality = fieldnames(coregAnat.(session{i}));
for j=1:length(modality)
anat = strrep(coregAnat.(session{i}).(modality{j}), LeadDBSDirs.coregDir, LeadDBSDirs.normDir);
normAnat.(session{i}).(modality{j}) = strrep(anat, obj.anchorSpace, templateSpace);
Is it possible to make obj.spacedef.name a structure somehow?
Jeremy Huard
2024-6-12
编辑:Jeremy Huard
2024-6-12
Fiona's question was answered in the following thread: https://www.mathworks.com/matlabcentral/answers/1929600-error-using-fieldnames-invalid-argument-of-type-cell-input-must-be-a-structure-or-a-java-or-com
更多回答(0 个)
社区
更多回答在 SimBiology Community
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Import Data 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!