Sven Mesecke's blog

  1. MATLAB in the Biosciences - a Tutorial

    Fr 11 Oktober 2013

    Download as pdf or epub


    The aim of this tutorial is to provide people working in the biosciences with little to no background in programming an accessible and short tutorial on MATLAB basics for common bioscience workflows. It was developed for some courses here at the EMBL and includes exercises …

  2. MATLAB in the Biosciences - Solutions

    Do 10 Oktober 2013

    Download as pdf

    Exercise 1

    % there are several ways for creating these arrays
    % 1 - squared brackets
    A = [1 3 5; 3 6 3; 9 8 5]
    % 2 - functions for array creation
    A = rand(3)
    A = magic(3) 
    
    b = [3; 4: 8] % 3 x 1 - column vector!
    
    A * b(1)
    A …