find missing points on a graph
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
talayeh ghodsi
el 13 de Jun. de 2019
Comentada: KSSV
el 13 de Jun. de 2019
hi every body. I have written this code
a=[1,3,4,6,7,9]
b=[2,12,24,32,41,49]
plot(a,b,'r-')
hold on
plot(a,b,'ko','LineWidth',2,'DisplayName','KnownCorrespondence')
i want to find 3 points on the above graph which i have the a values of them only
a_missing=[2,5,8]
how can i find the b_missing values correspond to a_value on the graph?
0 comentarios
Respuesta aceptada
KSSV
el 13 de Jun. de 2019
a=[1,3,4,6,7,9]
b=[2,12,24,32,41,49]
plot(a,b,'r-')
hold on
plot(a,b,'ko','LineWidth',2,'DisplayName','KnownCorrespondence')
% get missing
x = min(a):max(a) ;
missing = setdiff(x,a)
2 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre 2-D and 3-D Plots 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!