hi folks would need your help as am new to matlab and i need to write that equation using matlab to satisfy my algorithm. thnx
3 次查看(过去 30 天)
显示 更早的评论

2 个评论
José-Luis
2014-6-24
If you are new to Matlab, I recommend the "Getting started" part of the documentation.
采纳的回答
Image Analyst
2014-6-24
Which of the 3 equations? MATLAB arrays start at 1 not zero. You can use either sum() function or a for loop. If you use sum, make sure you use ./ and not /, like this
B(l) = sum(r(1:l) ./ CR(1:l));
That (1:l) is one to lower case L.
0 个评论
更多回答(1 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
