Saving a functiong graph inside a matrix
이전 댓글 표시
I am working on edge detection algorithms and i need to produce matrices which cointain graphs of various functions. They need to be in black-white format (no RGB three layer matrices).
For example if i use linspace and build up the graph of y=x^2 how do i save the plot in a non RGB matrix ?
답변 (1개)
x = linspace(-5,5,100);
y = x.^2;
plot(x,y)
fr=getframe(gca);
gray_image=im2gray(fr.cdata);
카테고리
도움말 센터 및 File Exchange에서 Networks에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
