Using if statement inside a function,I didn't understand why the error is coming,why I am unable to use the values of x & y inside the if loop
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
function O = help(~,~)
i=input('Value of i:');
j=input('Value of j:');
O = y(i,j);
function g=y(x,y)
if(x==y)
{
k = rem(x,2);
s = log2( (y - k) );
g = 2^(-s);
}
else
{
g=0;
}
end
return;
end
return;
end
2 comentarios
Walter Roberson
el 11 de Mzo. de 2013
There is no such thing as an "if loop". The body of an "if" is executed exactly once (or not at all), whereas a "loop" would continue executing the body until some condition was met.
Jan
el 11 de Mzo. de 2013
Please post the error message.
Be sure not to shadow the important Matlab function help by your function. This would be a very bad idea.
Respuesta aceptada
Vishal Rane
el 11 de Mzo. de 2013
Curly braces for the if-else statement are not required.
3 comentarios
Jan
el 11 de Mzo. de 2013
As Vishal Rane has said already: remove the curly braces in the IF-block. They are not only not required, but even an error, because curly braces create a cell array.
Más respuestas (0)
Ver también
Categorías
Más información sobre Matched Filter and Ambiguity Function 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!