Merge branch 'master' of raven.am28.uni-tuebingen.de:scientificComputing
This commit is contained in:
commit
40c847e694
16
projects/Makefile
Normal file
16
projects/Makefile
Normal file
@ -0,0 +1,16 @@
|
||||
all:
|
||||
for d in `ls -d project_*/`; do \
|
||||
echo "Processing $$d" ; \
|
||||
cd $$d; $(MAKE) zip ; cd .. ; \
|
||||
done
|
||||
|
||||
mv project_*/*zip .
|
||||
|
||||
clean:
|
||||
for d in `ls -d project_*/`; do \
|
||||
echo "Cleaning up $$d" ; \
|
||||
cd $$d; $(MAKE) clean ; cd .. ; \
|
||||
done
|
||||
|
||||
rm -f *.zip
|
||||
rm -rf auto
|
37
projects/disclaimer.tex
Normal file
37
projects/disclaimer.tex
Normal file
@ -0,0 +1,37 @@
|
||||
\fbox{\parbox{0.985\linewidth}{ \small
|
||||
|
||||
{\bf Evaluation criteria:}
|
||||
|
||||
Each project has three elements that are graded: (i) the code,
|
||||
(ii) the slides/figures, and (iii) the presentation.
|
||||
|
||||
\vspace{.5cm}
|
||||
|
||||
The {\bf code} and the {\bf presentation} should be uploaded to
|
||||
ILIAS before the presentations start on Thursday. Everything
|
||||
should be bundeled into a {\em single} zip-file. The
|
||||
presentation should be handed in as pdf.
|
||||
|
||||
\vspace{.5cm}
|
||||
|
||||
The {\bf code} should be exectuable without any further
|
||||
adjustments from us. This means that you should include all
|
||||
additional functions you wrote and the data into the
|
||||
zip-file. The {\em main script} should produce the same {\em
|
||||
figures} that you use in your slides. The figures should follow
|
||||
the guidelines for proper plotting as discussed in the first
|
||||
statistics lecture. The code should be properly commented and
|
||||
comprehensible by third persons (use proper and consistent
|
||||
variable names).
|
||||
|
||||
\vspace{.5cm}
|
||||
|
||||
The {\bf slides} should be handed in along with the code and in
|
||||
pdf format. We will store them all on one computer to allow fast
|
||||
transitions between talks. The {\bf presentation} itself should
|
||||
be {\em at most} 10min long and be held in English. In the
|
||||
presentation you should (i) briefly describe the problem, (ii)
|
||||
explain how you solved it algorithmically (don't show your
|
||||
entire code), and (iii) present figures showing your results.
|
||||
|
||||
}}
|
10
projects/project_template/Makefile
Normal file
10
projects/project_template/Makefile
Normal file
@ -0,0 +1,10 @@
|
||||
latex:
|
||||
pdflatex *.tex > /dev/null
|
||||
pdflatex *.tex > /dev/null
|
||||
|
||||
clean:
|
||||
rm -f *.log *.aux *.zip *.out auto
|
||||
rm -f `basename *.tex .tex`.pdf
|
||||
|
||||
zip: latex
|
||||
zip `basename *.tex .tex`.zip *.pdf *.dat *.mat
|
42
projects/project_template/template.tex
Executable file
42
projects/project_template/template.tex
Executable file
@ -0,0 +1,42 @@
|
||||
\documentclass[addpoints,10pt]{exam}
|
||||
\usepackage{url}
|
||||
\usepackage{color}
|
||||
\usepackage{hyperref}
|
||||
|
||||
\pagestyle{headandfoot}
|
||||
\runningheadrule
|
||||
\firstpageheadrule
|
||||
\firstpageheader{Scientific Computing}{Project Assignment}{11/05/2014
|
||||
-- 11/06/2014}
|
||||
%\runningheader{Homework 01}{Page \thepage\ of \numpages}{23. October 2014}
|
||||
\firstpagefooter{}{}{}
|
||||
\runningfooter{}{}{}
|
||||
\pointsinmargin
|
||||
\bracketedpoints
|
||||
|
||||
%\printanswers
|
||||
%\shadedsolutions
|
||||
|
||||
|
||||
\begin{document}
|
||||
%%%%%%%%%%%%%%%%%%%%% Submission instructions %%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
\sffamily
|
||||
% \begin{flushright}
|
||||
% \gradetable[h][questions]
|
||||
% \end{flushright}
|
||||
|
||||
\begin{center}
|
||||
\input{../disclaimer.tex}
|
||||
\end{center}
|
||||
|
||||
%%%%%%%%%%%%%% Questions %%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
|
||||
\begin{questions}
|
||||
\question What was the questions for 42?
|
||||
\end{questions}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
\end{document}
|
Reference in New Issue
Block a user