putting an equation as a code
7 views (last 30 days)
Show older comments
Can someone please help in writing this as a code? You will find the equation attached.
0 Comments
Answers (1)
Image Analyst
on 9 Jul 2016
If Z is the size of the first dimension, then:
theSum = sum(M(:, y) .* S(:, y) ./ (1 + K(:, y)));
because ":" (the colon operator) means "all rows". Otherwise, if Z is not the last element in the first dimension:
theSum = sum(M(1:Z, y) .* S(1:Z, y) ./ (1 + K(1:Z, y)));
6 Comments
Image Analyst
on 10 Jul 2016
Just make the subscripts like indexes, so M sub z,j is M(z, j). Then take it just one term at a time, like numerator = M*...... etc. You should be able to do it, it's easy especially after I just told you how to turn subscripts into indexes.
See Also
Categories
Find more on Loops and Conditional Statements in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!