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

 Accepted Answer

Matt J
Matt J on 15 Jun 2013
Edited: Matt J on 15 Jun 2013
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.

More Answers (0)

Categories

Asked:

on 15 Jun 2013

Community Treasure Hunt

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

Start Hunting!