Redian新闻
>
2jobs; entry-level GIS position and Toxicologist
avatar
2jobs; entry-level GIS position and Toxicologist# Environmental - 环境科学与工程
m*s
1
“润万物者莫润乎水”,客厅中的鱼缸,离不了水,所以鱼缸在风水学里是“水”的同
义词,除了有观赏价值之外,在风水方面亦有其接气化煞之功效,鱼与水共生,使室内
更有生机,并对家居风水产生积极的作用。因此,浴缸的宜忌即是水的宜忌,两者大同
小异。
那些生辰八字缺水的人,摆放鱼缸在客厅便会对运程大有帮助,但那些忌水的人,
若养鱼在客厅中,便决不适宜。如果不知道自己的生辰八字是否适宜养鱼,最简单的方
法便是以自己过往的经历来验证。若是以往在家中养鱼而家运兴旺的。便应该继续养鱼
,即使搬了新屋,亦不能中断。但若是以往家中养鱼而宅运不宁的,则尽快停止养鱼,
甚至按风水论与水有关的物件也不要摆放在客厅中。
在客厅中摆放鱼缸有以下几点需要注意:
A、鱼缸不宜过大;太大的鱼缸会储存太多的水,从风水的角度来说,水固然重要,则
太多太深则不宜,而鱼缸高于成人站起时的眼睛位置便是过高,因此客厅中的鱼缸不宜
过大过高,尤其是对面积细小的客厅更为不宜。
B、鱼缸不宜放在吉方;任何住宅都不可能十全十美,总有些外煞之类的存在,用鱼缸
来化解外煞是其中的一个巧妙办法。中华大玄空风水学中有“拨水入零堂”的说法,所
谓“零堂”是指失运的衰位,其意是指把水引入失运的方位,可以转祸为祥,逢凶化吉
。因此鱼缸宜摆在凶方,而不宜摆在吉方。(宜放零神位)
C、鱼缸切勿摆在沙发背后:从风水角度来看,以水来做背后的靠山是不妥当的,因为
水性无常,倚之作为靠山,便难求稳定。因此把鱼缸摆在沙发背后,一家大小日常坐在
那里,便会无山可靠,影响宅运的安定。而若是把鱼缸放在沙发旁边,则对住宅风水并
无妨碍。
avatar
b*k
2
what if I have 3 groups of data and want to separate them into two axes with
plotyy in the same figure. how to control?
plotyy(x1,y1,x2,y2, x3,y3) does not work.
two cases:
1. x1, y1, x2, y2 in left axes, x3, y3 in right axes.
2. x1, y1 in left axes, x2, y2, x3, y3 in right axes.
avatar
w*a
3
我需要实现一个基于Bayes估计的算法. 每一步都需要根据新采集的数据进行Bayes估计
. 想请问一下有没有现成的Bayes估计的程序可以调用. 谢谢.
avatar
s*1
4
will be advertising for a Cartographic Technician in the next month or so
for Cape Hatteras National Seashore. I'm hoping to find someone with good
GPS and GIS skills to work at our Buxton field station. This position will
be responsible for working with field biologists and law enforcement to
incorporate their GPS data into threatened and endangered species databases
and for producing a fairly high volume of maps related to species locations
and beach closures to ORV's and pedestrians. Skill
avatar
b*u
5
补充几点
鱼缸不能放在微波炉里
鱼缸不能放在冰箱冷冻里
鱼缸不能放在被窝里
avatar
j*u
6
First you need to use [AX, H1,H2]=plotyy(...) to get the axis handles, when
you plot the 3rd data set, set the parent to specific axis you wanna use.
For example,
x = 0:0.01:20;
y1 = 200*exp(-0.05*x).*sin(x);
y2 = 0.8*exp(-0.5*x).*sin(10*x);
[AX,H1,H2] = plotyy(x,y1,x,y2,'plot');
hold on
H3 = plot(x,0.5.*y2,'r','parent',AX(1)) ; % case 1
set(H3, 'parent',AX(2)) ; % case 2

with

【在 b***k 的大作中提到】
: what if I have 3 groups of data and want to separate them into two axes with
: plotyy in the same figure. how to control?
: plotyy(x1,y1,x2,y2, x3,y3) does not work.
: two cases:
: 1. x1, y1, x2, y2 in left axes, x3, y3 in right axes.
: 2. x1, y1 in left axes, x2, y2, x3, y3 in right axes.

avatar
a*e
7
楼上的辛苦了,天天贴opening, 想试试第二个,人家只收U.S.Citizens
avatar
l*o
8
HEHE

【在 b******u 的大作中提到】
: 补充几点
: 鱼缸不能放在微波炉里
: 鱼缸不能放在冰箱冷冻里
: 鱼缸不能放在被窝里

avatar
b*k
9
cool, thanks.
but why plotyy(ax(1),x,y3) and plot(ax(2),x,y3) does not work?

when

【在 j**u 的大作中提到】
: First you need to use [AX, H1,H2]=plotyy(...) to get the axis handles, when
: you plot the 3rd data set, set the parent to specific axis you wanna use.
: For example,
: x = 0:0.01:20;
: y1 = 200*exp(-0.05*x).*sin(x);
: y2 = 0.8*exp(-0.5*x).*sin(10*x);
: [AX,H1,H2] = plotyy(x,y1,x,y2,'plot');
: hold on
: H3 = plot(x,0.5.*y2,'r','parent',AX(1)) ; % case 1
: set(H3, 'parent',AX(2)) ; % case 2

avatar
m*1
10
对第一个感兴趣,虽然不懂 GIS (逃),
但是都是federal 的阿,LZ贴点没有身份要求的?
avatar
z*3
11
不见得
放进微波炉的是红烧鱼
放进冰箱里的是冷冻鱼
放在被窝里的是美人鱼

【在 b******u 的大作中提到】
: 补充几点
: 鱼缸不能放在微波炉里
: 鱼缸不能放在冰箱冷冻里
: 鱼缸不能放在被窝里

avatar
j*u
12
plot(AX(1),x,y3) should work.
1. did you use "hold on"?
2. AX is case sensitive

【在 b***k 的大作中提到】
: cool, thanks.
: but why plotyy(ax(1),x,y3) and plot(ax(2),x,y3) does not work?
:
: when

avatar
b*k
13
yes, plot(ax(1),x,y3) works.
but for case 2, seems to me you have to use set(h3,'parent',ax(2))
ax is not case sensitive as long as you returned with ax in plotyy.

【在 j**u 的大作中提到】
: plot(AX(1),x,y3) should work.
: 1. did you use "hold on"?
: 2. AX is case sensitive

avatar
j*u
14
after plotyy, the current axes is ax(1), so "hold on" only works on ax(1).
You need to set ax(2) by hold(ax(2),'on')

【在 b***k 的大作中提到】
: yes, plot(ax(1),x,y3) works.
: but for case 2, seems to me you have to use set(h3,'parent',ax(2))
: ax is not case sensitive as long as you returned with ax in plotyy.

相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。