Recent content by vikky_manit
-
V
MATLAB How to write this code in matlab?
temp(i,j) is an matrix containing pixel values of an image.- vikky_manit
- Post #4
- Forum: MATLAB, Maple, Mathematica, LaTeX
-
V
MATLAB How to write this code in matlab?
M0=100; var0=100; i=1:478 j=1:448 if(temp(i,j)>M) G(i,j)=M0+sqrt(double((var0*power((temp(i,j)-M),2))/V)); else G(i,j)=M0-sqrt(double((var0*power((temp(i,j)-M),2))/V)); Where temp(i,j) is an matrix. This code is not working. I am...- vikky_manit
- Thread
- Code Matlab
- Replies: 3
- Forum: MATLAB, Maple, Mathematica, LaTeX
-
V
MATLAB How to write this equation within Matlab?
How to write this code in Matlab? M0=100; var0=100; for i=1:478 for j=1:448 if(temp(i,j)>M) G(i,j)=M0+sqrt(double((var0*power((temp(i,j)-M),2))/V)); else G(i,j)=M0-sqrt(double((var0*power((temp(i,j)-M),2))/V)); Where temp(i,j) is...- vikky_manit
- Post #9
- Forum: MATLAB, Maple, Mathematica, LaTeX