corr2 on simulink don't code genaration

The function 'corr2' is not supported for standalone code generation. See the documentation for coder.extrinsic to learn how you can use this function in simulation.
what function can replace this function on the simulink simulation?

 採用された回答

Birdman
Birdman 2017 年 10 月 18 日

0 投票

There is the necessary function and its embedded model in a MATLAB Function in Simulink. Hope this helps. You need to have the m file and the model at the same directory.

11 件のコメント

tsai kai shung
tsai kai shung 2017 年 10 月 19 日
thanks your help
tsai kai shung
tsai kai shung 2017 年 10 月 19 日
sorry i use this function run on the matlab show the error message: Error using * Inner matrix dimensions must agree.
Error in Corr3 (line 5) rNum(i)=((A(i)-A_0)*(B(i)-B_0));
Error in OCR (line 55) sem=Corr3(templates(1:42,n:n+23),img_r);
Birdman
Birdman 2017 年 10 月 19 日
It should work just fine. Make sure that arrays are the same length
Walter Roberson
Walter Roberson 2017 年 10 月 19 日
It looks to me like the inputs must be vectors?
Birdman
Birdman 2017 年 10 月 19 日
The inputs are vectors.
tsai kai shung
tsai kai shung 2017 年 10 月 19 日
my input is array!so how to change this function
Birdman
Birdman 2017 年 10 月 19 日
Define nx1 array, which means vector.
tsai kai shung
tsai kai shung 2017 年 10 月 19 日
how to define
tsai kai shung
tsai kai shung 2017 年 10 月 19 日
編集済み: Walter Roberson 2017 年 10 月 19 日
function r = Corr2(A,B)
A = A - mean2(A);
B = B - mean2(B);
r = sum(sum(A.*B))/sqrt(sum(sum(A.*A))*sum(sum(B.*B)));
end
i use this can normal run
Birdman
Birdman 2017 年 10 月 19 日
A=[1 2 3 4] and B=[3 4 5 6]. In constant block in simulink, just type the array, don't write A=[1 2 3 4]. Write [1 2 3 4] only.
tsai kai shung
tsai kai shung 2017 年 10 月 20 日
i use the BWimage input

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

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeSimulink についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!