Effacer les filtres
Effacer les filtres

adding element to a matrix row

4 vues (au cours des 30 derniers jours)
bbah
bbah le 20 Nov 2019
Commenté : KALYAN ACHARJYA le 20 Nov 2019
hi,
i want to add to a matrix edhe next element to the next column
e.g
calculate an element
add to position matrix(1,1)
calculate next element
add to position matrix(1,2)
...
jump to next row and do the same ...
  1 commentaire
KALYAN ACHARJYA
KALYAN ACHARJYA le 20 Nov 2019
Hints:
element=calculate the element
for i=1:r
for j=1:c
mat(i,j)=element
element=calculate the element
end
end

Connectez-vous pour commenter.

Réponse acceptée

M
M le 20 Nov 2019
You can read this to know about matrix indexing:
You can do something like:
m = nbRow;
n = nbCol;
M = zeros(m,n);
for i = 1 : nbRow
for j = 1 : nbCol
a = i + j ;% some calculation
M(i,j) = a;
end
end

Plus de réponses (0)

Catégories

En savoir plus sur Logical dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by