Please help me with this error....
Show older comments
_Error using eikos_getResponseData (line 14) Error using vertcat CAT arguments dimensions are not consistent._
The code used is this...
function data = eikos_getResponseData
S = load('RESPONSE.mat');
%Get Response model data structure.
data.model.type = 'Matlab';
data.model.name = 'Response';
data.model.callName = 'Q =f(B,L,D,A,Es,S,Vs)';
data.parameter.name = {'B''L''D''A''Es''S''Vs'};
data.parameter.callName = {'B''L''D''A''Es''S''Vs'};
data.parameter.isUsed = {1 1 1};
data.parameter.min = {0.25 0.25 0 0.0625 2328 0.5 0.0001};
data.parameter.max = {3.02 3.02 1 9.1204 72800 300 0.0025};
data.parameter.distribution = {...
'lognormal' 'lognormal' 'lognormal';
0.25 0.25 0 0.0625 2328 0.5 0.0001;
3.02 3.02 1 9.1204 72800 300 0.0025;
[] [] []};
data.output.name = {'Q'};
data.output.callName = {'Q'};
data.output.isUsed = {1};
Accepted Answer
More Answers (0)
Categories
Find more on Dynamic System Models in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!