creating a new column in a matrix using 'if condition"
Mostrar comentarios más antiguos
On the following matrix:

I am using the following code which is not giving the right response.
if Reg1(:,3)==0
Reg1(:,10)=0;
else
Reg1(:,10)=a1-b1*Reg1(:,3)+Reg1(:,6);
end
Cannot figure out the issue.
The output is

1 comentario
Catalytic
el 26 de Abr. de 2019
We have no way of knowing what you consider to be the "right response"....
Respuesta aceptada
Más respuestas (1)
if all( Reg1(:,3)==0 )
Reg1(:,10)=0;
else
Reg1(:,10)=a1-b1*Reg1(:,3)+Reg1(:,6);
end
1 comentario
Milan Kumar
el 27 de Abr. de 2019
Categorías
Más información sobre Resizing and Reshaping Matrices en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!