% MATLAB LESSON 3 % Ants recruitment around a food source (from experimental data) % Data are organized as follow: % Each line correspond to a new experiment (for a total of 5 experiments) % Each column correspond to a new time step (from 1 to 15) % The values correspond to the number of ants around the food source. ants(1,:) = [0 1 3 3 4 13 20 22 26 57 72 79 90 69 86]; ants(2,:) = [1 2 13 34 43 72 97 129 136 170 178 168 154 167 167]; ants(3,:) = [37 41 54 67 68 103 136 149 157 157 150 134 137 118 141]; ants(4,:) = [16 22 25 32 37 41 51 67 63 73 82 83 85 80 78]; ants(5,:) = [1 2 5 8 5 8 11 4 20 48 76 106 121 128 135]; % Execute this file to generate the matrix 'ants'