Please help me with this error....

_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};

 采纳的回答

Matt J
Matt J 2013-6-15
编辑:Matt J 2013-6-15

1 个投票

When you define data.parameter.distribution, you have different amounts of data in each row (three things in row 1 and 4, but seven things in rows 2 and 3). That's not allowed.

更多回答(0 个)

类别

帮助中心File Exchange 中查找有关 Dynamic System Models 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by