if clause for a nonscalar operator

2 visualizaciones (últimos 30 días)
shirin mhd
shirin mhd el 2 de Ag. de 2022
Comentada: Abderrahim. B el 2 de Ag. de 2022
Hi everyone
I have this code:
p=[];
if p==[]
disp('hello')
else
disp('bye')
end
and I expect this answer:
>> test
hello
but I receive this answer:
>> test
bye
how can i solve this problem???

Respuesta aceptada

Abderrahim. B
Abderrahim. B el 2 de Ag. de 2022
If I understood correctly:
p=[];
if ~isscalar(p)
disp('hello')
else
disp('bye')
end
hello
  2 comentarios
shirin mhd
shirin mhd el 2 de Ag. de 2022
Thank you so much.
Abderrahim. B
Abderrahim. B el 2 de Ag. de 2022
My pleasure!

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

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

Translated by