7 lines
155 B
Matlab
7 lines
155 B
Matlab
|
% Christian Potthast
|
||
|
% Create a map with random landmarks
|
||
|
|
||
|
function map = create_random_landmarks(numberOfLandmarks)
|
||
|
|
||
|
map = rand(2,numberOfLandmarks)*100;
|