nav-left cat-right
cat-right
Aktuelle Kommentare
  • Philip: So eine Zusammenstellung habe ich schon länger gesucht, viel...
  • Tobias: Ja, jetzt klappt es prima! Danke! :-)...
  • pospiech: Habe das PDF erneut hochgeladen. Sollte jetzt funktionieren....
  • Tobias: Leider kann ich die PDF nicht öffnen. Bekomme mit mehreren R...
  • Hans Hartmann: Also mir hat diese Seite geholfen. Vielen Dank!...
  • pospiech: Ich würde dir empfehlen solche Fragen auf ...
Zufällige Artikel
C++ Vortrag: Grundlagen u... Erneut werde ich einen Workshop über C++ halten. Diesmal habe ich die...
mediawiki and LaTeX The most important plugin is hostet on wikisophia.org. Its called...
Brutblatt Blüten Im Mai hat unser Brutblatt geblüht. Er war inzwischen (mit Topf) ca. 1,80...
Buntnesseln Diese Jahr haben wir eine abgebrochenen Zweig einer Buntnessel erneut...
C++ Vortrag: Grundlagen u... Den folgenden Vortrag mit Titel “Grundlagen und Objektorientierte...
fast reading of structure... In the following I present a solution to read data from a textfile which has...

plotyy with unequal tick locations for both datase...

In matlab the normal way to create plots with two y-axis is to use the command plotyy. This works quite simple, and creates equal tick locations for both data sets: xaxis = 0:0.1:25; y1 = linspace(12.1712,12.7679, length(xaxis)); y2 = linspace(0.3597,-28.7745, length(xaxis));   [AX,H1,H2] = plotyy(xaxis, y1, xaxis, y2);   plotstyle; % sets only colors, linestyle...

LaTeX Workshop

Die folgenden Folien und Übungen dienten zur eintägigen Einführung von LaTeX für die Erstellung von Bachelor und Masterarbeiten.   LaTeXWorkshopVortrag-2012-02-04.pdf (2,0 MiB)   LaTeXWorkshopUebungen-2012-02-04.zip (2,9 MiB) In einem Tag (Samstag von 10:00-16:00 Uhr) reicht natürlich nicht alle Grundlagen von LaTeX mit den wichtigsten Details vorzustellen. Die Inhalte...

Erstellung von Bachelor und Masterarbeiten mit LaT...

Im Rahmen meiner Lehrverpflichtungen an der Leibniz Universität Hannover habe ich die folgende Vorlesung zur Erstellung von Bachelor und Masterarbeiten mit LaTeX gehalten   LaTeXWS2011.pdf (3,6 MiB)   LaTeXWS2011Uebungen.zip (28,9 MiB) Die Verlesung richtetete sich an Studenten mit Vorkenntnissen in LaTeX, da die Inhalte hier die speziellen Probleme beim Schreiben von Abschlussarbeiten sein...

Einführung in Bibliographien mit LaTeX, bibla...

Im Rahmen eines Arbeitsgruppenseminars der AG Morgner wurde der folgende Vortrag zur Einführung in Bibliographien mit LaTeX gehalten. Zielpublikum waren Masterstudenten und Doktoranden, die zuvor schon mit Bibtex gearbeitet hatten.   VortragBibtexBiblatexBiber.pdf (2,4 MiB)   VortragBibtexBiblatexBiber-Uebungen.zip (1,5 MiB)

pcolor plots with publication ready formating

Matlab has many possibilities to create plots even fancy ones. However its defaults are very seldom suitable to use the plots directly for a publication. The following minimal code demonstrates how to generate a pcolor plot for 2D data with x- and y-axis. The data was calculated using the function shown here. pcolor(xAxis, yAxis, Data2D); shading flat; % do not interpolate pixels colorbar % add...

fast calculation of functions with two variables

If you come from the programming world of C/C++ or java or any other traditional programming languages you might fall into the trap of using for loops for the calculation of functions. This works as expected but it is much slower than what matlab can do. The following example demonstrates this principle (which you should not use if you can) Data2D = zeros([xPoints yPoints]); for xi = 1:xPoints x =...

plotting a filled curve

A search on how to fill the area under a curve reveals that such questions are quite often asked. Here is the solution in a function file that I created for simplifying filled curve plots using matlabs fill function. function handle = filledcurve(x, y, zero, colorspec)   if (nargin < 3) zero = 0; end   if (nargin < 4) colorspec = 'b'; end     xtemp =...

fast reading of structured text data with matlab

In the following I present a solution to read data from a textfile which has the number of x-values (columns) in the first line, the number of y-values (rows) in the second line and in all following lines the matrix with size x times y. The principle reading of the data is achieved by the following code % open file display(['reading ' FILENAME]); fid = fopen(FILENAME, 'r'); fseek(fid, 0,...
Page 1 of 1512345...10...Last »