matrix definition through indivisual call

1 vue (au cours des 30 derniers jours)
pratik dangar
pratik dangar le 27 Août 2019
Commenté : Walter Roberson le 30 Août 2019
how to call matrix elements in terms of i j such that i can call indivisual element and then form a matrix.
  4 commentaires
Adam Danz
Adam Danz le 27 Août 2019
Walter Roberson
Walter Roberson le 30 Août 2019
I think they are asking how to do dynamic variable names.

Connectez-vous pour commenter.

Réponses (1)

Anmol Dhiman
Anmol Dhiman le 30 Août 2019
To solve a system of linear equations you can use Symbolic Math Toolbox. Refer to below Link
If you wish to create your own matrix for a given size, you can use zeros function. You can access the individual elements as A(i,j), where i represents number of rows and represents number of columns, as shown below
A = zeros(3,3)
A(1,1) =4
A(1,3) =5

Community Treasure Hunt

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

Start Hunting!

Translated by