Borrar filtros
Borrar filtros

How to write a function for a specific direction?

2 visualizaciones (últimos 30 días)
Amanda
Amanda el 25 de Oct. de 2022
Respondida: Walter Roberson el 25 de Oct. de 2022
I am trying to write a function that make my arrow point to true north regardless of which way its point at a certain point of time. So far I have (Code below). Everytime I run it it tells me I have to many input arugements. Im not sure if im writing this correctly.
function turnNorth()
(getHeading(2))
turnLeft();
(getHeading(3))
turnLeft();
turnLeft();
(getHeading(4))
turnLeft();
turnLeft();
turnLeft();
end

Respuestas (1)

Walter Roberson
Walter Roberson el 25 de Oct. de 2022
My guess is that you need
function turnNorth()
current_heading = getHeading;
switch current_heading
case 2:
turnLeft();
case 3:
turnLeft();
turnLeft();
case 4:
turnLeft();
turnLeft();
turnLeft();
end

Categorías

Más información sobre Communications Toolbox en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by