Effacer les filtres
Effacer les filtres

how can i do this operation?

1 vue (au cours des 30 derniers jours)
Firas Al-Kharabsheh
Firas Al-Kharabsheh le 1 Mai 2016
if i have
M = [2 1
1 0
1 3
3 0
2 0 ]
AND
X = [ 2 0 0
1 1 1
4 0 0
1 0 0
2 1 0 ]
how can i calculate the F = | M - X | THEN F1 = sum(F)

Réponse acceptée

CS Researcher
CS Researcher le 1 Mai 2016
As you can see M and X are of different sizes, you cannot perform a subtraction operation on them. Maybe you can do this:
M = [M zeros(size(M,1),1)];
F = abs(M-X);
F1 = sum(F);

Plus de réponses (0)

Catégories

En savoir plus sur MATLAB Coder dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by