Effacer les filtres
Effacer les filtres

Info

Cette question est clôturée. Rouvrir pour modifier ou répondre.

How can I write code that multiplies one transition matrices by the different products of two matrixes?

2 vues (au cours des 30 derniers jours)
ag..
ag.. le 5 Avr 2019
Clôturé : MATLAB Answer Bot le 20 Août 2021
I am working on a problem where I need to multiply two matrices:
group1_transition*group1_distribution
I would like to multiply the product of this matrix by the group1_transition again, and then repeat this 4 more times. Each time I want to multiply the product of the multiplication by group1_transition again. In other words how can I simplify the following into simple code:
n = group1_transition*group1_distribution
x = n*group1_transition
b = x*group1_transition
k = b*group1_transition
g = k*group1_transition

Réponses (1)

A. Sawas
A. Sawas le 6 Avr 2019
You can use the power ^ operator:
g = group1_transition*group1_distribution*(group1_transition^4);

Cette question est clôturée.

Community Treasure Hunt

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

Start Hunting!

Translated by