writing the equation of normalize correlation

hello.please i want for writing the following equation in mathworks,how can i write it

2 Comments

Are you asking how to implement the correlation in MATLAB code, or are you asking how to enter the equation into the MATLAB Symbolic Toolbox?
The MATLAB function for the numerical calculation is xcorr2.
sir i want for writing the equetion in my program not in mathworks tools.i want for writing in my hand no by exist function.

Sign in to comment.

 Accepted Answer

rng('default')
x = 4;
y = 5;
w = rand(x,y);
wstroke = rand(x,y);
NC = sum(w.*wstroke,'all')/sum(w.^2,'all')
NC = 0.5080

More Answers (0)

Products

Release

R2021b

Asked:

on 7 Oct 2022

Commented:

on 10 Oct 2022

Community Treasure Hunt

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

Start Hunting!