need help in to write a matlab script

1 visualización (últimos 30 días)
Sg dg
Sg dg el 29 de Dic. de 2012
how do you write a matlab script to calculate the Sum for the expression?

Respuesta aceptada

Sabarinathan Vadivelu
Sabarinathan Vadivelu el 29 de Dic. de 2012
n = 10; % assuming it to be 10
x = 0;
for i = 1 : n
x = ((1/i) + (1/(i+2)*(i+3))) + x;
end

Más respuestas (1)

Roger Stafford
Roger Stafford el 29 de Dic. de 2012
ix = 1:n;
s = sum(1./ix+1./((ix+2).*(ix+3)));

Categorías

Más información sobre Get Started with MATLAB en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by