matlab matrix with specific elements

1 vue (au cours des 30 derniers jours)
Mohannad Almalki
Mohannad Almalki le 16 Oct 2020
i want to create an m by n matricx and its elements are write by this firmula
a(i, j) = (j − 4)2 (i + 1)−3 + ij
where i is the row number and j is the column number?

Réponse acceptée

Asad (Mehrzad) Khoddam
Asad (Mehrzad) Khoddam le 16 Oct 2020
assume that i is from 1 to 5 and j is from 1 to 6:
% i: 1 to 5
% j: 1 to 6
[i,j] = meshgrid(1:5,1:6);
a=2*(j-4).*(i+1)-3+i.*j;
disp(a)
  2 commentaires
Mohannad Almalki
Mohannad Almalki le 16 Oct 2020
I want it to be a=((j-4)^2)*((i+1)^-3)+(i+j)
Asad (Mehrzad) Khoddam
Asad (Mehrzad) Khoddam le 16 Oct 2020
% i: 1 to 5
% j: 1 to 6
[i,j] = meshgrid(1:5,1:6);
a=(j-4).^2.*(i+1).^-3+i+j;
disp(a)

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Matrices and Arrays dans Help Center et File Exchange

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by