フィルターのクリア

meas, k nearest neighborhood

88 ビュー (過去 30 日間)
Ahsen Feyza Dogan
Ahsen Feyza Dogan 2019 年 7 月 2 日
回答済み: Star Strider 2019 年 7 月 2 日
Hi,
In this code I don't understand that what meas does, and it assings all row and 3rd and 4th column to x.
load fisheriris
x = meas(:,3:4);
gscatter(x(:,1),x(:,2),species)
Thank you

回答 (1 件)

Star Strider
Star Strider 2019 年 7 月 2 日
Apparently ‘meas’ is a matrix, The ‘x’ assignment takes columns 3 and 4 from it.
It would have been just as easy (and likely more efficient) to simply code it as:
gscatter(meas(:,3),meas(:,4),species)
and remove ‘x’ altogether.

カテゴリ

Help Center および File ExchangeStochastic Differential Equation (SDE) Models についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by