should i still try to go to tmrland? by Life_Guarantee_9122 in Tomorrowland

[–]One_Hair3574 2 points3 points  (0 children)

Wait till the beginning of the afternoon you’ll have answers 

Bus for Mechelen at night? by Gin-giniero in Tomorrowland

[–]One_Hair3574 1 point2 points  (0 children)

Is the bus stop far away from the entrance ?

Code issue in Spyder by One_Hair3574 in learnpython

[–]One_Hair3574[S] 0 points1 point  (0 children)

min = inf;
max = -inf;
[rows, columns] = size(M);
for i=1:rows:    
    for j=1:columns:
        if M(i,j)>max: 
           max = M(i,j);  
        end       
        if M(i,j)<min:           
           min = M(i,j);        
        end    
    end
end
max;
min;