フィルターのクリア

convert c to matlab code

3 ビュー (過去 30 日間)
Elysi Cochin
Elysi Cochin 2012 年 11 月 8 日
for (ix=0; ix< iNx; ix++)
for (iy=0; iy< iNy; iy++)
{
fMeanIn += pfIm0[X(ix,iy)]*pfu[X(ix,iy)];
fNormalizationIn += pfu[X(ix,iy)];
fMeanOut += pfIm0[X(ix,iy)]*(1.0-pfu[X(ix,iy)]);
fNormalizationOut += 1.0-pfu[X(ix,iy)];
}
the above code is C code.... how to convert this into matlab code.... i'm getting error in pfIm0[X(ix,iy)].... please help me to solve it out...

採用された回答

Andreas Goser
Andreas Goser 2012 年 11 月 8 日
MATLAB start with index 1 and has no index 0.
  2 件のコメント
Elysi Cochin
Elysi Cochin 2012 年 11 月 8 日
thanks sir... what about the remaining portion....
Andreas Goser
Andreas Goser 2012 年 11 月 8 日
In my view this depends on the data going into the code. You could post dummy data like A=1:10 or B=rand(3,3) to run test code

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLogical についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by