智慧职教: 10、分析代码以下代码 clear;clc; a=[107.5901247, 26.4991466; 107.5894212, 26.49878615]; y=pdist(a,'cityblock'); yc=squareform(y); z=linkage(y); [h,t]=dendrogram(z,10); T=cluster(z,'maxclust',10); %第7行 for i=1:10 tm=find(T==i); tm=reshape(tm,1,length(tm)); fprintf('第%d类的有%s
',i,int2str(tm)); End figure; plot(T); T 其中第7行的函数cluster第三个参数‘10’代表( )
',i,int2str(tm)); End figure; plot(T); T 其中第7行的函数cluster第三个参数‘10’代表( )
举一反三
- 智慧职教: 10、分析代码以下代码 clear;clc; a=[107.5901247, 26.4991466; 107.5894212, 26.49878615]; y=pdist(a,'cityblock'); yc=squareform(y); z=linkage(y); [h,t]=dendrogram(z,10); %第6行 T=cluster(z,'maxclust',10); for i=1:10 tm=find(T==i); tm=reshape(tm,1,length(tm)); fprintf('第%d类的有%s ',i,int2str(tm)); End figure; plot(T); T 其中第6行的函数dendrogram第二个参数‘10’代表( )
- 智慧职教: 10、分析代码以下代码 clear;clc; a=[107.5901247, 26.4991466; 107.5894212, 26.49878615]; y=pdist(a,'cityblock'); yc=squareform(y); z=linkage(y); [h,t]=dendrogram(z,10); T=cluster(z,'maxclust',10); for i=1:10 tm=find(T==i); tm=reshape(tm,1,length(tm)); fprintf('第%d类的有%s ',i,int2str(tm)); End figure; plot(T); T 其中分析的数据矩阵a中有( )个样本
- X、Y、Z三组分混合物经色谱柱分离后,已知:t R(X) =6min,t R(Y) =9min,t R(Z) =14min, tM=1.5min,则Z组分的调整保留时间为____min。
- 广义笛卡尔积属于关系运算符中的(40)。两个元数分别为n目和m目的广义笛卡尔积是一个(41)列的元组集合,其形式定义如下:(42)=(43)。 A: (t|tn+m∧tn∈R∧tm∈S} B: <t|t≤tn,tm>∧tn∈R∧tm∈S} C: <t|t≤tn,tm>∧tn∈R∧tm∈S∧tn[i]θtm[j]} D: <t|t≤t E: ,t F: >∧tn∈R∧tm∈S∧t G: ∈R-S}
- 下列程序段的执行结果是( )。 x = 5: y = 7: z = 8 If x < y Then t = x: x = y: y = t End If If y < z Then t = y: y = z: z = t If x < y Then t = x: x = y: y = t End If End If Print x, y, z A: 8 5 7 B: 8 7 5 C: 5 7 8 D: 7 5 8