How to do write the codes for this summation problem?

2 visualizaciones (últimos 30 días)
MD. Rokibujjaman sovon
MD. Rokibujjaman sovon el 22 de Oct. de 2020
Comentada: MD Rokibujjaman Sabuj el 22 de Oct. de 2020
How to write the codes for this.
where
n=5
T=[0.56, 0.23, 1.58, 2.69, 1.1]
Thank you.

Respuestas (1)

Alan Stevens
Alan Stevens el 22 de Oct. de 2020
Having defined n and T then
B = 1./(log(T) - mean(log(T)));
Note that in Matlab, log is log to base e.
  10 comentarios
Alan Stevens
Alan Stevens el 22 de Oct. de 2020
It works for me:
>> T=[0.56; 0.23; 1.58; 2.69; 1.1];
B = 1./(log(T) - sum(log(T)))
B =
-13.7741
-1.0390
1.0367
0.6681
1.6597
Look in the Workspace window to see the values, or remove the semicolon to see the values in the command window.
MD Rokibujjaman Sabuj
MD Rokibujjaman Sabuj el 22 de Oct. de 2020
Its working now. Thanks.

Iniciar sesión para comentar.

Categorías

Más información sobre Entering Commands 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