how can i fill a vector with result of 4 instructions?
1 次查看(过去 30 天)
显示 更早的评论
hello, assuming that i have:
DE1 = pdist2(vecteur(1),V1(2),'euclidean')
DE2 = pdist2(vecteur(2),V1(2),'euclidean')
DE3 = pdist2(vecteur(3),V1(2),'euclidean')
DE4 = pdist2(vecteur(3),V1(2),'euclidean')
- how can i write those 4 lignes on one ligne please and store results in a vector?
0 个评论
采纳的回答
Walter Roberson
2015-12-24
DE = abs(vecteur([1:3 3]) - V1(2));
Are you sure you did not want the DE4 to use vecteur(4) ?
This code substitution is not applicable if your values happen to be symbolic matrices.
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!