i want to write a code where equation is y=x*x. if y=100 what is the value of x?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
rakesh kumar
el 18 de Sept. de 2020
Comentada: rakesh kumar
el 18 de Sept. de 2020
i have written
z=100;
for x=1:1:20
y=x*x
if y==z
fprintf(x)
end
end
0 comentarios
Respuesta aceptada
Stephen23
el 18 de Sept. de 2020
Editada: Stephen23
el 18 de Sept. de 2020
>> f = @(x) x.^2 - 100;
>> x = fzero(f,pi)
x = 10
Más respuestas (1)
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!