need help on equation a*b-c*d(t-1)=1....
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
hello professionals....i need help on equation a*b-c*d(t-1)=1....where a and c are selected randomly and b , d and t are previously calculated.there shoulb be a loop until the equation become equal to one.thank u
1 comentario
Walter Roberson
el 12 de Abr. de 2013
If you are looping, what is going to change in the loop? You would be choosing new random values "a" and "c" ? If so then you could end up with a very long wait indeed.
Respuesta aceptada
Walter Roberson
el 12 de Abr. de 2013
For any given "a", there is exactly one "c" that works:
c = (1 - a*b)/(d*(1-t))
If when you say "selected randomly" you mean that they are to be in the range [0,1] then the condition could only be satisfied when c is between 1/(d*(1-t)) and (1-b)/(d*(1-t)) . Exception: if d = 0, then c can be anything and a = 1/b
0 comentarios
Más respuestas (0)
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!