how to check that difference of two vectors is a multiple of ones in matlab
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
asim nadeem
el 6 de Sept. de 2018
Comentada: Walter Roberson
el 7 de Sept. de 2018
A=[2 2 2 2 ] B=[3 3 3 3 ] want to check if A-B=k(ones) where k is an integer.
2 comentarios
Stephen23
el 7 de Sept. de 2018
"where k is an integer."
Can k be negative? Or zero? Or are only positive k allowed?
Respuesta aceptada
Walter Roberson
el 7 de Sept. de 2018
Check that the first entry of A-B is an integer with mod() or by comparing it to fix() of itself. Then check that diff() of A-B is all zero.
1 comentario
Walter Roberson
el 7 de Sept. de 2018
t = A - B;
if t(1) ~= 0 && t(1) == fix(t(1)) && all(diff(t) == 0)
passed
else
failed
end
Más respuestas (1)
Alexander Jensen
el 6 de Sept. de 2018
Editada: Alexander Jensen
el 6 de Sept. de 2018
Is this what you're looking for?:
isInt = ~logical(mod(A-B,1))
isInt =
1×4 logical array
0 1 1 1
The logical(X) function returns everything that is not 0 as TRUE.
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!