how to compare two matrix by graph?
Mostrar comentarios más antiguos
I am generating matrix by two different algorithm. Now i have two Matrix R1 and R2. by finding difference between them or by ratio they are nearly same. ratio of each element is nearly 1.00003 and difference of each element is 10^-12.
Now,to represent analysis i want to show them on a graph. How to do that?
Respuesta aceptada
Más respuestas (1)
Azzi Abdelmalek
el 7 de Ag. de 2014
R1=sin(0:0.1:10)
R2=R1+1e-12*rand(1,numel(R1))
er=R2-R1
plot(er)
1 comentario
vanita
el 8 de Ag. de 2014
Categorías
Más información sobre Surfaces, Volumes, and Polygons en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!