matrix iteration and subtraction

1 vue (au cours des 30 derniers jours)
Anusha
Anusha le 31 Oct 2013
y=
6
7
2
4
S=
8
1
3
0
d=|y-s| for each iteration y take one value and subtract with each value of s eg: first iteration d=
2
5
3
6
how to find d value for four iterations

Réponse acceptée

Andrei Bobrov
Andrei Bobrov le 31 Oct 2013
d = abs(bsxfun(@minus,y(:),s(:)'));

Plus de réponses (0)

Catégories

En savoir plus sur Matrix Indexing 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