g******s 发帖数: 733 | 1 如果用
b1=a2d(1,:);
b2=a2d(2,:);
a1d(b2~=0)=b1(b2~=0)/b2(b2~=0);
请问有什么办法可以把这三句语句可以合成一句话吗?\
先谢了! |
|
f**********d 发帖数: 4960 | 2 【 以下文字转载自 Mathematics 讨论区 】
发信人: freelikewind (像风一样自由), 信区: Mathematics
标 题: 如何把实矢量分类
发信站: BBS 未名空间站 (Sun Jun 18 21:20:57 2017, 美东)
先考虑scalar的情况,我们有一组实数a1,a2,...,an.
目的是partition成2份,最简单的是取median,小于median的一份,大于median的一份。
再看矢量的情况,我们有一组实矢量a1,a2,...,an。其中a1=[a11,a12,...,a1d]。
这种情况下,如何把这n个矢量分为大小两份?这些矢量如何排序? |
|
O******e 发帖数: 734 | 3 In the title you mentioned the atan function, but not in your code example.
If you want to calculate atan(y/x) but need to be able to handle cases where
x=0, use the atan2 function, i.e., atan2(y,x). atan2 should be available in
any useful computing environment. |
|
f**********d 发帖数: 4960 | 4 有一组实矢量a1,a2,...,an。其中a1=[a11,a12,...,a1d]。
这种情况下,如何把这n个矢量分为大小两份,使得一份儿的密度大,一份的密度小? |
|