Azzera filtri
Azzera filtri

Differences in using pdist

1 visualizzazione (ultimi 30 giorni)
med-sweng
med-sweng il 26 Feb 2013
Risposto: Raghvendra Kumar il 7 Lug 2020
In using `pdist` in `matlab`. What is the difference between the use of these two forms (notice (,) & (;)?
>> pdist([x,y]);
>> pdist([x;y]);
Thanks.

Risposte (1)

Raghvendra Kumar
Raghvendra Kumar il 7 Lug 2020
Hi,
Using
>> pdist([x,y]);
>> pdist([x;y]);
where x and y are vector
It will throw an error however suppose you have a vector x = [1,2,3,4];
it would be row majored vector i.e., (1 X 4)matrix as x = 1 2 3 4
and if x = [1;2;3;4];
it would be column majored vector i.e., (4 X 1) matrix as
x = 1
2
3
4

Categorie

Scopri di più su Operators and Elementary Operations in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by