for loop and else-if-elseif loo

2 visualizaciones (últimos 30 días)
kevin piaget
kevin piaget el 25 de Nov. de 2012
i would like to create an matrix(m,n) using for loop and else-if-elseif
  • ask user to input m,n
  • in the matrix:the value of the element in the first row is the number of the column.the vaue of the element in the first column is the number of the row.the rest of element are equal to the sum of the element above them and the element in the left.
i get this
m=input('number of rows')
n=input('number of column')
a=ones(m,n)
for i=2:m
for j=2:n
a(i,j)=a(i-1,j)+a(i,j-1)
end
end
my problem is concerning the elemt in the first row and column

Respuestas (1)

Walter Roberson
Walter Roberson el 25 de Nov. de 2012
Hint:
a = zeros(m,n);
a(:,1) = 1:m;

Categorías

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