Skip to content
Snippets Groups Projects
Commit 38df13bb authored by Stéphane Adjemian's avatar Stéphane Adjemian
Browse files

Fixed bug (options_.varobs is a row cell array of strings).

parent 0b828742
Branches
Tags
No related merge requests found
......@@ -76,7 +76,7 @@ end
if nvn
estim_params_.nvn_observable_correspondence=NaN(nvn,1); % stores number of corresponding observable
if isequal(M_.H,0) %if no previously set measurement error, initialize H
nvarobs = size(options_.varobs,1);
nvarobs = length(options_.varobs);
M_.H = zeros(nvarobs,nvarobs);
M_.Correlation_matrix_ME = eye(nvarobs);
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment