<?xml version="1.0" encoding="utf-8"?>
<!-- generator="FeedCreator 1.7.2-ppt DokuWiki" -->
<?xml-stylesheet href="http://research.andrefranz.de/lib/exe/css.php?s=feed" type="text/css"?>
<rdf:RDF
    xmlns="http://purl.org/rss/1.0/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
    xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel rdf:about="http://research.andrefranz.de/feed.php">
        <title>research</title>
        <description></description>
        <link>http://research.andrefranz.de/</link>
        <image rdf:resource="http://research.andrefranz.de/lib/images/favicon.ico" />
       <dc:date>2010-05-05T03:30:12+02:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="http://research.andrefranz.de/doku.php?id=theses:philipp:kleine_simulation_quellcode:find_initialparameter&amp;rev=1272352932&amp;do=diff"/>
                <rdf:li rdf:resource="http://research.andrefranz.de/doku.php?id=theses:philipp:kleine_simulation_quellcode&amp;rev=1272352890&amp;do=diff"/>
                <rdf:li rdf:resource="http://research.andrefranz.de/doku.php?id=theses:philipp:kleine_simulation_quellcode:xylose_single&amp;rev=1271764166&amp;do=diff"/>
                <rdf:li rdf:resource="http://research.andrefranz.de/doku.php?id=theses:philipp:kleine_simulation_quellcode:glucose_single&amp;rev=1271764029&amp;do=diff"/>
                <rdf:li rdf:resource="http://research.andrefranz.de/doku.php?id=theses:philipp:kleine_simulation_quellcode:diauxie_1&amp;rev=1271763771&amp;do=diff"/>
                <rdf:li rdf:resource="http://research.andrefranz.de/doku.php?id=theses:philipp:start&amp;rev=1271158593&amp;do=diff"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="http://research.andrefranz.de/lib/images/favicon.ico">
        <title>research</title>
        <link>http://research.andrefranz.de/</link>
        <url>http://research.andrefranz.de/lib/images/favicon.ico</url>
    </image>
    <item rdf:about="http://research.andrefranz.de/doku.php?id=theses:philipp:kleine_simulation_quellcode:find_initialparameter&amp;rev=1272352932&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2010-04-27T09:22:12+02:00</dc:date>
        <dc:creator>Philipp Paetzold</dc:creator>
        <title>theses:philipp:kleine_simulation_quellcode:find_initialparameter - created</title>
        <link>http://research.andrefranz.de/doku.php?id=theses:philipp:kleine_simulation_quellcode:find_initialparameter&amp;rev=1272352932&amp;do=diff</link>
        <description>function start

clc; clear all; close all;

fval=1000;

A = [1 1 0 0];
b = 1;              % sum(u) &lt;= 1
Aeq = [];
beq = [];           % 
lb = [0;0;0;0];     % lower bounds
ub = [1;1;1;1];     % upper bounds 
options = [];



    
    %     initPar = (lb + (ub-lb)).*rand(1,length(lb)); % find initial parameter set by random
    
    initPara = (1 - 0).*rand(1,4)
    
    [params,fvalneu] = fmincon(@program,initPara,A,b,Aeq,beq,lb,ub,[],options)
    
     
    if fvalneu &lt; fval
        
        f…</description>
    </item>
    <item rdf:about="http://research.andrefranz.de/doku.php?id=theses:philipp:kleine_simulation_quellcode&amp;rev=1272352890&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2010-04-27T09:21:30+02:00</dc:date>
        <dc:creator>Philipp Paetzold</dc:creator>
        <title>theses:philipp:kleine_simulation_quellcode</title>
        <link>http://research.andrefranz.de/doku.php?id=theses:philipp:kleine_simulation_quellcode&amp;rev=1272352890&amp;do=diff</link>
        <description>Diauxie_1

Glucose_single

Xylose_single

find Initialparameter</description>
    </item>
    <item rdf:about="http://research.andrefranz.de/doku.php?id=theses:philipp:kleine_simulation_quellcode:xylose_single&amp;rev=1271764166&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2010-04-20T13:49:26+02:00</dc:date>
        <dc:creator>Philipp Paetzold</dc:creator>
        <title>theses:philipp:kleine_simulation_quellcode:xylose_single - created</title>
        <link>http://research.andrefranz.de/doku.php?id=theses:philipp:kleine_simulation_quellcode:xylose_single&amp;rev=1271764166&amp;do=diff</link>
        <description>function studi

params2; % call params just to make sure to use the most recent ones

warning off;

clc;
clear all;
close all;

% --- Parameters ----------------------------------------------------------
load params2.mat;
% -------------------------------------------------------------------------

% --- initialisation of some variables ------------------------------------
t_total = [];
x_total = [];
u_total = [];
v_total = [];
J_total = [];
data_total = [];
pos_total = [];
neg_total = [];
J2_tot…</description>
    </item>
    <item rdf:about="http://research.andrefranz.de/doku.php?id=theses:philipp:kleine_simulation_quellcode:glucose_single&amp;rev=1271764029&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2010-04-20T13:47:09+02:00</dc:date>
        <dc:creator>Philipp Paetzold</dc:creator>
        <title>theses:philipp:kleine_simulation_quellcode:glucose_single</title>
        <link>http://research.andrefranz.de/doku.php?id=theses:philipp:kleine_simulation_quellcode:glucose_single&amp;rev=1271764029&amp;do=diff</link>
        <description>function studi

params2; % call params just to make sure to use the most recent ones

warning off;

clc;
clear all;
close all;

% --- Parameters ----------------------------------------------------------
load params2.mat;
% -------------------------------------------------------------------------

% --- initialisation of some variables ------------------------------------
t_total = [];
x_total = [];
u_total = [];
v_total = [];
J_total = [];
data_total = [];
pos_total = [];
neg_total = [];
J2_tot…</description>
    </item>
    <item rdf:about="http://research.andrefranz.de/doku.php?id=theses:philipp:kleine_simulation_quellcode:diauxie_1&amp;rev=1271763771&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2010-04-20T13:42:51+02:00</dc:date>
        <dc:creator>Philipp Paetzold</dc:creator>
        <title>theses:philipp:kleine_simulation_quellcode:diauxie_1</title>
        <link>http://research.andrefranz.de/doku.php?id=theses:philipp:kleine_simulation_quellcode:diauxie_1&amp;rev=1271763771&amp;do=diff</link>
        <description>function studi

params; % call params just to make sure to use the most recent ones

warning off;

clc;
clear all;
close all;

% --- Parameters ----------------------------------------------------------
load params.mat;
% -------------------------------------------------------------------------

% --- initialisation of some variables ------------------------------------
t_total = [];
x_total = [];
u_total = [];
v_total = [];
J_total = [];
data_total = [];
pos_total = [];
neg_total = [];
J2_total…</description>
    </item>
    <item rdf:about="http://research.andrefranz.de/doku.php?id=theses:philipp:start&amp;rev=1271158593&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2010-04-13T13:36:33+02:00</dc:date>
        <dc:creator>Philipp Paetzold</dc:creator>
        <title>theses:philipp:start</title>
        <link>http://research.andrefranz.de/doku.php?id=theses:philipp:start&amp;rev=1271158593&amp;do=diff</link>
        <description>kleine Simulation Quellcode

kleine Simulation Ergebnisse

kleine Simulation2 Ergebnisse

kleine Simulation2 vergleich dt=0.001 Ergebnisse</description>
    </item>
</rdf:RDF>
