Nested loops for double summation

2 visualizaciones (últimos 30 días)
J.Cam
J.Cam el 14 de Mzo. de 2020
Editada: J.Cam el 20 de Mzo. de 2020

Respuestas (1)

Akira Agata
Akira Agata el 15 de Mzo. de 2020
How about the following?
% Example of 3-by-3 array n
n = rand(3);
% Calculate R, C, and T
R = sum(n,2);
C = sum(n);
T = sum(R);
% Calculate \chi^2
CR = (C'*R')';
S = ((n - CR/T).^2)./(CR/T);
chi2 = sum(S(:));

Categorías

Más información sobre Loops and Conditional Statements en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by