https://github.com/Data2Dynamics/d2d
Raw File
Tip revision: 4c697ee160f4d91719a65cfcfe3e3b50395b6656 authored by Helge Hass on 29 July 2015, 07:45:33 UTC
new C code version
Tip revision: 4c697ee
arPlotS.m
% Plot sensitivities of models and datasets
%
% arPlotS

function arPlotS

global ar

if(isempty(ar))
    error('please initialize by arInit')
end

arSimu(true, true);
arSimu(true, false);

arPlotSY;
arPlotSYSTD;
arPlotSX;
back to top