finding x of y
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
soloby
el 25 de Jun. de 2015
Comentada: soloby
el 25 de Jun. de 2015
x = -10:0.1:10;
f1 = trapmf(x,[-2 0 0 2]);
index = find(f1 ==.05);
Xidx = x(index)
Why would Xidx give me an empty matrix 1-by-0?
I know for a fact that f1 has 0.05 at the 82nd iteration
0 comentarios
Respuesta aceptada
Azzi Abdelmalek
el 25 de Jun. de 2015
Editada: Azzi Abdelmalek
el 25 de Jun. de 2015
Try this
x = -10:0.1:10;
f1 = trapmf(x,[-2 0 0 2])
index=find(abs(f1-0.5)<10^(-10))
Xidx=x(index)
And read this
Más respuestas (0)
Ver también
Categorías
Más información sobre Data Import and Analysis 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!