migration beta

This commit is contained in:
Gaspard Jankowiak 2013-02-24 17:01:24 +01:00
parent 9f19ce04ee
commit d6c0881aac
23 changed files with 988 additions and 70 deletions

49
404.html Normal file
View file

@ -0,0 +1,49 @@
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<title>Perso personnnelle de Gaspard Jankowiak by gjankowiak</title>
<link rel="stylesheet" href="stylesheets/styles.css">
<link rel="stylesheet" href="stylesheets/pygment_trac.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script src="javascripts/respond.js"></script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!--[if lt IE 8]>
<link rel="stylesheet" href="stylesheets/ie.css">
<![endif]-->
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
</head>
<body>
<div class="wrapper">
<section>
<div id="title">
<h1>Perso personnnelle de Gaspard Jankowiak</h1>
<p>Thésard au Ceremade</p>
<hr>
<span class="credits left">Project maintained by <a href="https://github.com/gjankowiak">gjankowiak</a></span>
<span class="credits right">Hosted on GitHub Pages &mdash; Theme by <a href="http://twitter.com/#!/michigangraham">mattgraham</a></span>
</div>
</section>
<div style="text-align:center;font-size:200px">404/0</div>
</div>
<!--[if !IE]><script>fixScale(document);</script><![endif]-->
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-38752691-1");
pageTracker._trackPageview();
} catch(err) {}
</script>
</body>
</html>

62
algebre.html Normal file
View file

@ -0,0 +1,62 @@
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<title>Perso personnnelle de Gaspard Jankowiak by gjankowiak</title>
<link rel="stylesheet" href="stylesheets/styles.css">
<link rel="stylesheet" href="stylesheets/pygment_trac.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script src="javascripts/respond.js"></script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!--[if lt IE 8]>
<link rel="stylesheet" href="stylesheets/ie.css">
<![endif]-->
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
</head>
<body>
<div class="wrapper">
<section>
<div id="title">
<h1>Perso personnnelle de Gaspard Jankowiak</h1>
<p>Thésard au Ceremade</p>
<hr>
<span class="credits right">Hosted on GitHub Pages &mdash; Theme by <a href="http://twitter.com/#!/michigangraham">mattgraham</a></span>
</div>
<h1>Algèbre linéaire</h1>
<h2>2013</h2>
<a href="files/al3/bop-2012.pdf"><img src="images/application-pdf.png" style="width:32px;height:32px;vertical-align:middle" />
Best of partiel novembre 2012</a>
<hr>
<h2>2012</h2>
<a href="files/al3/exo20.pdf"><img src="images/application-pdf.png" style="width:32px;height:32px;vertical-align:middle" />
Correction de l'exo 20 de la première feuille de TD</a> : Projection sur
l'espace des matrices scalaires et diagonales.
<hr>
<h2>2011</h2>
<a href="files/al3/al3_supp.pdf"><img src="images/application-pdf.png" style="width:32px;height:32px;vertical-align:middle" />
Feuille d'exercices supplémentaires</a> : produits d'EV, interpolation, équivalence de normes, norme induite,
normes de matrices, polynômes orthogonaux, alternative de Fredholm, projecteurs, moindres
carrés.
</section>
</div>
<!--[if !IE]><script>fixScale(document);</script><![endif]-->
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-38752691-1");
pageTracker._trackPageview();
} catch(err) {}
</script>
</body>
</html>

BIN
files/al3/al3_supp.pdf Normal file

Binary file not shown.

BIN
files/al3/bop-2012.pdf Normal file

Binary file not shown.

BIN
files/al3/exo20.pdf Normal file

Binary file not shown.

BIN
files/cv.pdf Normal file

Binary file not shown.

Binary file not shown.

BIN
files/opt/2012/tp22012.pdf Normal file

Binary file not shown.

BIN
files/opt/2012/tp32012.pdf Normal file

Binary file not shown.

BIN
files/opt/2013/TD1-2013.pdf Executable file

Binary file not shown.

View file

@ -0,0 +1,24 @@
function grad_f = diff_fin_centre(f, x, epsilon)
% calcule le gradient de 'f' au(x) point(s) 'x' par
% différences finies centrées, en utilisant un pas 'epsilon'
% x est une matrice n x m,
% n : dimension
% m : nombre de points où l'on veut calculer le gradient,
% un point par colonne
[n, m] = size(x);
% le gradient de f au point x_j a la même dimension que x_j,
% et on calcule le gradient en m points.
grad_f = zeros(n,m);
for i = 1:n
% construction de m exemplaires du vecteur i de la base canonique
ei = zeros(n, m);
ei(i,:) = 1;
% calcul de la dérivée partielle selon la ième coordonnée,
% pour tous les points simultanément.
grad_f(i,:) = ( f(x+epsilon*ei) - f(x-epsilon*ei) ) / (2*epsilon);
end

View file

@ -0,0 +1,24 @@
function grad_f = diff_fin_droite(f, x, epsilon)
% calcule le gradient de 'f' au(x) point(s) 'x' par
% différences finies à droite, en utilisant un pas 'epsilon'
% x est une matrice n x m,
% n : dimension
% m : nombre de points où l'on veut calculer le gradient,
% un point par colonne
[n, m] = size(x);
% le gradient de f au point x_j a la même dimension que x_j,
% et on calcule le gradient en m points.
grad_f = zeros(n,m);
for i = 1:n
% construction de m exemplaires du vecteur i de la base canonique
ei = zeros(n, m);
ei(i,:) = 1;
% calcul de la dérivée partielle selon la ième coordonnée,
% pour tous les points simultanément.
grad_f(i,:) = ( f(x+epsilon*ei) - f(x) ) / epsilon;
end

BIN
files/opt/td1.pdf Normal file

Binary file not shown.

BIN
files/opt/tp2.pdf Normal file

Binary file not shown.

BIN
images/application-pdf.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

BIN
images/flag.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 6 KiB

155
images/flag.svg Normal file
View file

@ -0,0 +1,155 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="489.36328"
height="269.72656"
id="svg2"
version="1.1"
inkscape:version="0.47 r22583"
inkscape:export-filename="/Users/gapato/getch/flag.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90"
sodipodi:docname="New document 1">
<defs
id="defs4">
<inkscape:perspective
sodipodi:type="inkscape:persp3d"
inkscape:vp_x="0 : 526.18109 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_z="744.09448 : 526.18109 : 1"
inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
id="perspective10" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#7c7c7c"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:zoom="0.32"
inkscape:cx="369.7574"
inkscape:cy="565.33337"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="1436"
inkscape:window-height="856"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="0"
showborder="false">
<inkscape:grid
type="xygrid"
id="grid3774"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true" />
</sodipodi:namedview>
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-171.99768,-204.30807)">
<g
id="g3776"
transform="matrix(1,0,0,-1,0,678.26748)"
inkscape:export-filename="/Users/gapato/getch/flag.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90">
<path
inkscape:export-filename="/Users/gapato/getch/flag.png"
inkscape:export-ydpi="90"
inkscape:export-xdpi="90"
sodipodi:nodetypes="ccccccc"
id="path3764"
d="m 215.46643,473.90963 -43.46875,0.125 183.75704,-269.86189 122.8914,0.13533 182.71484,269.67773 -445.89453,-0.0762 0,3e-5 z"
style="fill:#ffffff;fill-opacity:1;stroke:none" />
<g
inkscape:export-ydpi="90"
inkscape:export-xdpi="90"
inkscape:export-filename="/Users/gapato/flag.png"
transform="matrix(1,0,0,1.1361113,49.35534,-66.245005)"
id="g3616">
<path
style="fill:#1d1ecf;fill-opacity:1;stroke:none"
d="m 379.81735,434.74056 95.87739,-60.61227 -95.87738,0 -1e-5,60.61227 z"
id="path2824"
sodipodi:nodetypes="cccc" />
<path
style="fill:#1d1ecf;fill-opacity:1;stroke:none"
d="m 378.31736,475.56508 120.08769,-75.4749 0,75.47491 -120.08769,-10e-6 z"
id="path2826"
sodipodi:nodetypes="cccc" />
<path
style="fill:#1d1ecf;fill-opacity:1;stroke:none"
d="m 537.31276,475.60459 -0.0379,-64.563 49.62374,64.52349 -49.58587,0.0395 z"
id="path2828"
sodipodi:nodetypes="cccc" />
<path
style="fill:#cf1d1d;fill-opacity:1;stroke:none"
d="m 379.88049,367.47876 111.55873,0.50507 -111.62186,71.21576 0,28.28427 125.44005,-82.38344 0,90.46466 25.63333,0.0262 -0.0197,-71.75816 -49.53336,-66.65891 -101.39407,-0.56065 -0.0631,30.86523 -3e-5,0 z"
id="path3608"
sodipodi:nodetypes="cccccccccccc" />
<path
sodipodi:nodetypes="cccc"
id="path3610"
d="m 379.81735,269.27116 93.37739,61.32655 -93.37738,-0.35714 -1e-5,-60.96941 z"
style="fill:#1d1ecf;fill-opacity:1;stroke:none" />
<path
style="fill:#cf1d1d;fill-opacity:1;stroke:none"
d="M 379.64286,265.21933 380,238.07647 l 45.35966,26.18841 46.06891,60.24016 -91.78571,-59.28571 z"
id="path3612"
sodipodi:nodetypes="ccccc" />
<path
style="fill:#1d1ecf;fill-opacity:1;stroke:none"
d="m 394.89954,238.28833 9.28572,0 9.64286,11.42857 -18.92858,-11.42857 z"
id="path3614"
sodipodi:nodetypes="cccc" />
</g>
<g
inkscape:export-ydpi="90"
inkscape:export-xdpi="90"
inkscape:export-filename="/Users/gapato/flag.png"
transform="translate(25.35534,-1.0304576)"
id="g3639">
<path
sodipodi:nodetypes="cccc"
style="fill:#2b4fc8;fill-opacity:1;stroke:none"
d="m 172.73609,475.06 78.28682,0 0,-114.80158 L 172.73609,475.06 z"
id="path2832" />
<path
sodipodi:nodetypes="ccccccc"
style="fill:#ea0202;fill-opacity:1;stroke:none"
d="m 313.14729,475.06 0.78125,-209.07666 40.99265,-60.59047 23.0239,-0.0436 1.36719,269.71581 -66.16499,-0.005 0,-8e-5 z"
id="path2834" />
<path
sodipodi:nodetypes="ccccc"
style="fill:#ffffff;fill-opacity:1;stroke:none"
d="m 250.51783,359.4299 63.13454,-93.17039 -0.50508,207.79034 -62.12438,0 -0.50508,-114.61995 z"
id="path3631" />
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.6 KiB

524
images/flag_dis.svg Normal file
View file

@ -0,0 +1,524 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="551.35999"
height="269.72656"
id="svg2"
version="1.1"
inkscape:version="0.47 r22583"
inkscape:export-filename="/Users/gapato/getch/flag.png"
inkscape:export-xdpi="28.028385"
inkscape:export-ydpi="28.028385"
sodipodi:docname="flag_dis.svg">
<defs
id="defs4">
<inkscape:perspective
sodipodi:type="inkscape:persp3d"
inkscape:vp_x="0 : 526.18109 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_z="744.09448 : 526.18109 : 1"
inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
id="perspective10" />
<filter
id="filter4463"
inkscape:menu="Textures"
inkscape:label="Watercolor"
inkscape:menu-tooltip="Cloudy watercolor effect"
height="2"
y="-0.5"
width="1.6"
x="-0.30000001"
color-interpolation-filters="sRGB">
<feGaussianBlur
id="feGaussianBlur4465"
stdDeviation="3"
result="result8" />
<feTurbulence
id="feTurbulence4467"
seed="58"
result="result7"
type="fractalNoise"
numOctaves="5"
baseFrequency="0.04057971014492754" />
<feComposite
id="feComposite4469"
in2="result8"
result="result6"
operator="over"
in="result7" />
<feColorMatrix
id="feColorMatrix4471"
result="result9"
values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 6 -4 " />
<feDisplacementMap
id="feDisplacementMap4473"
in2="result9"
in="result7"
xChannelSelector="A"
yChannelSelector="A"
scale="50"
result="result4" />
<feComposite
id="feComposite4475"
in2="result4"
result="result2"
operator="in"
in="result8" />
<feComposite
id="feComposite4477"
in2="result9"
result="fbSourceGraphic"
in="result2"
operator="in" />
<feComposite
id="feComposite4479"
in2="fbSourceGraphic"
operator="arithmetic"
k2="1"
k1="0.5"
in="fbSourceGraphic"
result="result91"
k3="0"
k4="0" />
<feBlend
id="feBlend4481"
in2="result91"
in="fbSourceGraphic"
mode="multiply" />
</filter>
<filter
id="filter4483"
inkscape:menu="Textures"
inkscape:label="Watercolor"
inkscape:menu-tooltip="Cloudy watercolor effect"
height="2"
y="-0.5"
width="1.6"
x="-0.30000001"
color-interpolation-filters="sRGB">
<feGaussianBlur
id="feGaussianBlur4485"
stdDeviation="9.5742608695652169"
result="result8" />
<feTurbulence
id="feTurbulence4487"
seed="301"
result="result7"
type="fractalNoise"
numOctaves="4"
baseFrequency="0.041739130434782612" />
<feComposite
id="feComposite4489"
in2="result8"
result="result6"
operator="over"
in="result7" />
<feColorMatrix
id="feColorMatrix4491"
result="result9"
values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 6 -4 " />
<feDisplacementMap
id="feDisplacementMap4493"
in2="result9"
in="result7"
xChannelSelector="A"
yChannelSelector="A"
scale="50"
result="result4" />
<feComposite
id="feComposite4495"
in2="result4"
result="result2"
operator="in"
in="result8" />
<feComposite
id="feComposite4497"
in2="result9"
result="fbSourceGraphic"
in="result2"
operator="in" />
<feComposite
id="feComposite4499"
in2="fbSourceGraphic"
operator="arithmetic"
k2="1"
k1="0.5"
in="fbSourceGraphic"
result="result91"
k3="0"
k4="0" />
<feBlend
id="feBlend4501"
in2="result91"
in="fbSourceGraphic"
mode="multiply" />
</filter>
<filter
id="filter4733"
inkscape:menu="Textures"
inkscape:label="Watercolor"
inkscape:menu-tooltip="Cloudy watercolor effect"
height="2"
y="-0.5"
width="1.6"
x="-0.30000001"
color-interpolation-filters="sRGB">
<feGaussianBlur
id="feGaussianBlur4735"
stdDeviation="15"
result="result8" />
<feTurbulence
id="feTurbulence4737"
seed="27"
result="result7"
type="fractalNoise"
numOctaves="5"
baseFrequency="0.025" />
<feComposite
id="feComposite4739"
in2="result8"
result="result6"
operator="over"
in="result7" />
<feColorMatrix
id="feColorMatrix4741"
result="result9"
values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 6 -4 " />
<feDisplacementMap
id="feDisplacementMap4743"
in2="result9"
in="result7"
xChannelSelector="A"
yChannelSelector="A"
scale="50"
result="result4" />
<feComposite
id="feComposite4745"
in2="result4"
result="result2"
operator="in"
in="result8" />
<feComposite
id="feComposite4747"
in2="result9"
result="fbSourceGraphic"
in="result2"
operator="in" />
<feComposite
id="feComposite4749"
in2="fbSourceGraphic"
operator="arithmetic"
k2="1"
k1="0.5"
in="fbSourceGraphic"
result="result91"
k3="0"
k4="0" />
<feBlend
id="feBlend4751"
in2="result91"
in="fbSourceGraphic"
mode="multiply" />
</filter>
<filter
id="filter5549"
inkscape:label="Simple blur"
inkscape:menu="ABCs"
inkscape:menu-tooltip="Simple Gaussian blur, same as the blur slider in Fill and Stroke dialog"
color-interpolation-filters="sRGB">
<feGaussianBlur
id="feGaussianBlur5551"
stdDeviation="3"
result="fbSourceGraphic" />
<feColorMatrix
result="fbSourceGraphicAlpha"
in="fbSourceGraphic"
values="0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 1 0"
id="feColorMatrix5553" />
<feGaussianBlur
id="feGaussianBlur5555"
stdDeviation="3"
in="fbSourceGraphic" />
</filter>
<filter
id="filter2926"
x="-0.15000001"
width="1.3"
y="-0.15000001"
height="1.3"
inkscape:menu-tooltip="Felt like texture with color turbulence and slightly darker at the edges"
inkscape:menu="Textures"
inkscape:label="Felt"
color-interpolation-filters="sRGB">
<feGaussianBlur
id="feGaussianBlur2928"
result="result1"
in="SourceGraphic"
stdDeviation="2" />
<feTurbulence
id="feTurbulence2930"
result="result0"
numOctaves="5"
baseFrequency="0.05"
type="fractalNoise" />
<feDisplacementMap
id="feDisplacementMap2932"
in2="result0"
result="result2"
scale="20"
yChannelSelector="G"
xChannelSelector="R"
in="result1" />
<feGaussianBlur
id="feGaussianBlur2934"
result="result4"
in="result2"
stdDeviation="5" />
<feComposite
id="feComposite2936"
in2="result4"
result="result6"
k1="1"
k3="1"
k2="0.5"
in="result0"
operator="arithmetic"
k4="0" />
<feComposite
id="feComposite2938"
in2="result0"
in="result6"
operator="in"
result="result91" />
<feComposite
id="feComposite2940"
in2="result91"
operator="arithmetic"
k1="1.5"
in="result2"
k2="0"
k3="0"
k4="0" />
</filter>
<filter
id="filter2954"
inkscape:label="Inkblot"
inkscape:menu="Textures"
inkscape:menu-tooltip="Inkblot on tissue or rough paper"
height="1.3"
y="-0.15000001"
width="1.3"
x="-0.15000001"
color-interpolation-filters="sRGB">
<feGaussianBlur
id="feGaussianBlur2956"
result="result1"
in="SourceGraphic"
stdDeviation="4" />
<feTurbulence
id="feTurbulence2958"
result="result0"
numOctaves="4"
baseFrequency="0.05"
type="fractalNoise" />
<feDisplacementMap
id="feDisplacementMap2960"
in2="result0"
result="result2"
scale="20"
yChannelSelector="G"
xChannelSelector="R"
in="result1" />
<feGaussianBlur
id="feGaussianBlur2962"
result="result4"
in="SourceGraphic"
stdDeviation="3" />
<feComposite
id="feComposite2964"
in2="result2"
in="result4"
operator="arithmetic"
k2="-0.25"
k3="0.5"
k1="1.5"
result="result5"
k4="0" />
</filter>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#7c7c7c"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:zoom="1"
inkscape:cx="249.30227"
inkscape:cy="93.470706"
inkscape:document-units="px"
inkscape:current-layer="layer5"
showgrid="false"
inkscape:window-width="1436"
inkscape:window-height="856"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="0"
showborder="true"
borderlayer="true"
inkscape:showpageshadow="false">
<inkscape:grid
type="xygrid"
id="grid3774"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true" />
</sodipodi:namedview>
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer6"
inkscape:label="ezf"
style="display:none">
<path
inkscape:export-filename="/Users/gapato/getch/flag.png"
inkscape:export-ydpi="90"
inkscape:export-xdpi="90"
sodipodi:nodetypes="ccccccc"
id="path5535"
d="M 7.28554,0.04978 -44,-0.07522 172.80124,269.78667 317.79165,269.65134 533.36328,-0.02639 7.28554,0.04981 l 0,-3e-5 z"
style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline" />
</g>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-171.99768,-204.30807)"
style="display:inline">
<path
inkscape:export-filename="/Users/gapato/getch/flag.png"
inkscape:export-ydpi="90"
inkscape:export-xdpi="90"
sodipodi:nodetypes="ccccccc"
id="path4753"
d="m 207.61841,204.35785 -48.62073,-0.125 205.53617,269.86189 137.45666,-0.13533 204.37045,-269.67773 -498.74255,0.0762 0,-3e-5 z"
style="fill:none;stroke:none" />
<path
style="fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter5549)"
d="m 231.46643,204.35785 -43.46875,-0.125 183.75704,269.86189 122.8914,-0.13533 182.71484,-269.67773 -445.89453,0.0762 0,-3e-5 z"
id="path3764"
sodipodi:nodetypes="ccccccc"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90"
inkscape:export-filename="/Users/gapato/getch/flag.png" />
</g>
<g
inkscape:groupmode="layer"
id="layer4"
inkscape:label="Layer"
style="display:inline">
<path
inkscape:export-filename="/Users/gapato/getch/flag.png"
inkscape:export-ydpi="90"
inkscape:export-xdpi="90"
sodipodi:nodetypes="ccccccc"
id="path4710"
d="M 33.173812,-26.946489 -19,-27.096521 201.55627,296.80797 l 147.50166,-0.16243 219.30535,-323.683453 -535.189468,0.09146 0,-3.6e-5 z"
style="fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter2954)" />
</g>
<g
inkscape:groupmode="layer"
id="layer5"
inkscape:label="Layer#1"
style="display:inline">
<g
id="g3822"
transform="translate(-135.99768,-204.30807)">
<g
style="fill:#999999"
id="g3103">
<path
style="fill:#999999;fill-opacity:1;stroke:none"
d="m 429.23583,327.01571 111.55873,-0.57382 -111.62186,-80.90903 0,-32.13408 125.44005,93.59676 0,-102.77792 25.63333,-0.0298 -0.0197,81.52526 -49.53336,75.73194 -101.39407,0.63696 -0.0631,-35.06634 -3e-5,0 z"
id="path3608"
sodipodi:nodetypes="cccccccccccc" />
<path
style="fill:#999999;fill-opacity:1;stroke:none"
d="m 428.9982,443.1938 0.35714,30.83731 45.35966,-29.75295 46.06891,-68.43952 -91.78571,67.35516 z"
id="path3612"
sodipodi:nodetypes="ccccc" />
</g>
<g
style="fill:#4d4d4d"
id="g3107">
<path
style="fill:#4d4d4d;fill-opacity:1;stroke:none"
d="m 429.17269,250.59882 95.87739,68.86228 -95.87738,0 -1e-5,-68.86228 z"
id="path2824"
sodipodi:nodetypes="cccc" />
<path
style="fill:#4d4d4d;fill-opacity:1;stroke:none"
d="m 427.6727,204.21762 120.08769,85.74789 0,-85.7479 -120.08769,1e-5 z"
id="path2826"
sodipodi:nodetypes="cccc" />
<path
style="fill:#4d4d4d;fill-opacity:1;stroke:none"
d="m 586.6681,204.17273 -0.0379,73.35075 49.62374,-73.30586 -49.58587,-0.0449 z"
id="path2828"
sodipodi:nodetypes="cccc" />
<path
sodipodi:nodetypes="cccc"
id="path3610"
d="m 429.17269,438.59047 93.37739,-69.67378 -93.37738,0.40575 -1e-5,69.26803 z"
style="fill:#4d4d4d;fill-opacity:1;stroke:none" />
<path
style="fill:#4d4d4d;fill-opacity:1;stroke:none"
d="m 444.25488,473.79042 9.28572,0 9.64286,-12.98413 -18.92858,12.98413 z"
id="path3614"
sodipodi:nodetypes="cccc" />
</g>
</g>
<g
id="g3639"
transform="matrix(1,0,0,-1,-126.64234,474.98987)"
inkscape:export-filename="/Users/gapato/flag.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90">
<path
id="path2832"
d="m 172.73609,475.06 78.28682,0 0,-114.80158 L 172.73609,475.06 z"
style="fill:#2b4fc8;fill-opacity:1;stroke:none"
sodipodi:nodetypes="cccc" />
<path
id="path2834"
d="m 313.14729,475.06 0.78125,-209.07666 40.99265,-60.59047 23.0239,-0.0436 1.36719,269.71581 -66.16499,-0.005 0,-8e-5 z"
style="fill:#ea0202;fill-opacity:1;stroke:none"
sodipodi:nodetypes="ccccccc" />
<path
id="path3631"
d="m 250.51783,359.4299 63.13454,-93.17039 -0.50508,207.79034 -62.12438,0 -0.50508,-114.61995 z"
style="fill:#ffffff;fill-opacity:1;stroke:none"
sodipodi:nodetypes="ccccc" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 16 KiB

BIN
images/m-file.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2 KiB

BIN
images/rect.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

View file

@ -18,12 +18,6 @@
</head>
<body>
<div id="header">
<nav>
<li class="fork"><a href="https://github.com/gjankowiak">View On GitHub</a></li>
</nav>
</div><!-- end header -->
<div class="wrapper">
<section>
@ -31,7 +25,6 @@
<h1>Perso personnnelle de Gaspard Jankowiak</h1>
<p>Thésard au Ceremade</p>
<hr>
<span class="credits left">Project maintained by <a href="https://github.com/gjankowiak">gjankowiak</a></span>
<span class="credits right">Hosted on GitHub Pages &mdash; Theme by <a href="http://twitter.com/#!/michigangraham">mattgraham</a></span>
</div>
@ -48,10 +41,11 @@
<h1>Enseignement</h1>
<ol>
<li>Algèbre linéaire (L2)</li>
<li>Optimisation numérique (L3)</li>
</ol><h1>Contact</h1>
<ul>
<li><a href="algebre.html">Algèbre linéaire (L2)</a></li>
<li><a href="optimisation.html">Optimisation numérique (L3)</a></li>
</ul>
<h1>Contact</h1>
<p>Gaspard Jankowiak<br>
jankowiak[at]ceremade.dauphine.fr<br>
@ -59,6 +53,12 @@ jankowiak[at]ceremade.dauphine.fr<br>
Ceremade - Université Paris Dauphine<br>
Place du Maréchal de Lattre de Tassigny<br>
75775 PARIS Cedex 16</p>
<h1>Curriculum vitæ</h1>
<ul>
<li><a href="files/cv.pdf">English</a></li>
<li>Français</li>
</ul>
</section>
</div>

80
optimisation.html Normal file
View file

@ -0,0 +1,80 @@
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<title>Perso personnnelle de Gaspard Jankowiak by gjankowiak</title>
<link rel="stylesheet" href="stylesheets/styles.css">
<link rel="stylesheet" href="stylesheets/pygment_trac.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script src="javascripts/respond.js"></script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!--[if lt IE 8]>
<link rel="stylesheet" href="stylesheets/ie.css">
<![endif]-->
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
</head>
<body>
<div class="wrapper">
<section>
<div id="title">
<h1>Perso personnnelle de Gaspard Jankowiak</h1>
<p>Thésard au Ceremade</p>
<hr>
<span class="credits right">Hosted on GitHub Pages &mdash; Theme by <a href="http://twitter.com/#!/michigangraham">mattgraham</a></span>
</div>
<h1>Optimisation numérique</h1>
<h2>2013</h2>
<p>
<a href="files/opt/2013/TD1-2013.pdf"><img src="images/application-pdf.png" style="width:32px;height:32px;vertical-align:middle" />
Sujet TD/TP n°1</a>
</p>
<p>
Correction TP n°1 (différences finies) :<br />
<a href="files/opt/2013/diff_fin_droite.m"><img src="images/m-file.png" style="height:32px;vertical-align:middle" />
à droite</a>
<a href="files/opt/2013/diff_fin_centre.m"><img src="images/m-file.png" style="height:32px;vertical-align:middle" />
centrées</a>
</p>
<hr>
<h2>2012</h2>
<p>
<a href="files/opt/2012/corrige_cc.pdf"><img src="images/application-pdf.png" style="width:32px;height:32px;vertical-align:middle" />
Corrigé du contrôle continu du 15 mars 2012</a>
<p>
</p>
<a href="files/opt/2012/tp22012.pdf"><img src="images/application-pdf.png" style="width:32px;height:32px;vertical-align:middle" />
Sujet TP n°2</a>
<p>
</p>
<a href="files/opt/2012/tp32012.pdf"><img src="images/application-pdf.png" style="width:32px;height:32px;vertical-align:middle" />
Sujet TP n°3</a>
</p>
<hr>
<h2>2011</h2>
<p>
<a href="files/opt/tp2.pdf"><img src="images/application-pdf.png" style="width:32px;height:32px;vertical-align:middle" />
Sujet TP n°2</a> : Méthode du gradient réduit.
</p>
</section>
</div>
<!--[if !IE]><script>fixScale(document);</script><![endif]-->
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-38752691-1");
pageTracker._trackPageview();
} catch(err) {}
</script>
</body>
</html>

View file

@ -795,9 +795,9 @@ section #title {
section #title h1 {
font-family: 'OpenSansLight', "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: normal;
font-size: 40px;
font-size: 30px;
text-align: center;
line-height: 36px;
line-height: 27px;
}
section #title p {
color: #d7cfbe;