If N is given and I need to make a choice for a1, then using if else statements how should I apply the following condition:
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Neha W
el 28 de Mzo. de 2016
Comentada: Neha W
el 28 de Mzo. de 2016
(a1,N) = 1, if 2 does not divide N or 4 divides N
0 comentarios
Respuesta aceptada
Walter Roberson
el 28 de Mzo. de 2016
hint: mod(N,2)
3 comentarios
Walter Roberson
el 28 de Mzo. de 2016
That looks like it would work, if you are looping over a1 and N.
That code will not work if a1 or N are vectors.
Note that the definition you gave would also be satisfied by setting all locations to 1, since the definition does not say what should happen at any location where N has any other value.
By the way: how is that definition "making a decision about a1" ? The definition ignores a1.
Más respuestas (0)
Ver también
Categorías
Más información sobre Loops and Conditional Statements en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!