Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

Help me clarify this

2 visualizaciones (últimos 30 días)
sarah
sarah el 28 de Dic. de 2012
Cerrada: MATLAB Answer Bot el 20 de Ag. de 2021
Suppose we have
U = [1, 2, 4, 8, 16];
for j=1:length(U);
p(:,j)= 1-((1-exp(-(z))).^N).^U(j);
i don't get the 3rd row.why use p(:,j) on the left side and U(j)on the right side .why not use U(:,j) too?

Respuestas (1)

Jan
Jan el 28 de Dic. de 2012
  • U(j) is the j.th element of the vector U.
  • U(1, j) is the j.th element of the first row of U.
  • U(:, j) is the j.th element of all rows of U.
As long as U is a row vector, these three terms create the same answer.
The indexing is explained exhaustively in the "Getting Started" chapters of the documentation. It is obligatory to read at least these chapters, when you want to work with such a powerful tool as Matlab.

La pregunta está cerrada.

Etiquetas

Aún no se han introducido etiquetas.

Community Treasure Hunt

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

Start Hunting!

Translated by