Borrar filtros
Borrar filtros

How can I compare the values of different columns of the same matrix

4 visualizaciones (últimos 30 días)
I want to compare the values of the vector/matrix ZL with eachother. This is my code. It always displays false even if the values are equal
ZL=input('ZA ZB ZC ','s');
if ZL(1,1)==ZL(1,2)==ZL(1,3)
display('True')
else display ('false')
end

Respuesta aceptada

A. Sawas
A. Sawas el 5 de Abr. de 2019
Basically, the function input with the argument 's' returns a char array (string), you need to convert it into vector of numbers, like this:
ZL=input('ZA ZB ZC ','s'); % this is returning a char array
ZL = sscanf(ZL,'%f')'; % add this line to break the char array into vector of numbers
% the transpose (') at the end is to get a row vector instead of column vector
if ZL(1,1)==ZL(1,2)==ZL(1,3)
display('True')
else display ('false')
end
  9 comentarios
madhan ravi
madhan ravi el 6 de Abr. de 2019
Editada: madhan ravi el 6 de Abr. de 2019
If ZL has for instance more elements it would'nt be better to compare each element, better would be to create a comma separated list to compare all at once.
Image Analyst
Image Analyst el 7 de Abr. de 2019
Arouj, I removed your flag saying "Answer" on this post since flags are just supposed to let moderators know that they need to check into something weird with the post (like the original poster deleted everything or more info is needed or similar). Just marking the answer as "Accepted" and perhaps a comment saying thanks is they way to go.
By the way, since I gave this answer first, prior to notifying Sawas who changed it to match mine, could you at least Vote for mine? Don't worry, it won't take away from his reputation points. Voting for and accepting answers gives posters "reputation points", so thanks for doing both.

Iniciar sesión para comentar.

Más respuestas (2)

Image Analyst
Image Analyst el 5 de Abr. de 2019
Try this:
if ZL(1,1) == ZL(1,2) && ZL(1,1) == ZL(1,3)
etc.

madhan ravi
madhan ravi el 6 de Abr. de 2019
Editada: madhan ravi el 6 de Abr. de 2019
According to your claim it always returns 0 is because
let's break it down:
1) ZL(1,1)==ZL(1,2) will return a logical array maybe one 1 or 0.
2) You then compare that result with the third element which ZL(1,3) which is not 0 or 1 according to your claim when comapred to 0 or 1 it is not equal so returning false at the end.
So instead:
The right way is to use isequal() because if you have ZL to have more values, the approach of yours would be tiresome.
Remove 's' from your first line:
ZL=input('ZA ZB ZC '); % removed s, assuming your values are numeric
z = mat2cell(ZL,size(ZL,1),ones(1,size(ZL,2)));
isequal(z{:}) % just use a comma separated list to verify if each columns are equal, 0 means false 1 means true
  2 comentarios
Arouj
Arouj el 7 de Abr. de 2019
This approach is giving me error
madhan ravi
madhan ravi el 7 de Abr. de 2019
Editada: madhan ravi el 7 de Abr. de 2019
It is not useful by saying "giving me error" what error did you get ? Post the complete error message you get (everything in red) .The input should be
[1-1*i,2-2*i,3] % should be a valid MATLAB syntax

Iniciar sesión para comentar.

Categorías

Más información sobre Logical 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