Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93016516
plot.py
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Mon, Nov 25, 14:40
Size
416 B
Mime Type
text/x-python
Expires
Wed, Nov 27, 14:40 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22555358
Attached To
rGEAR Gear
plot.py
View Options
#!/usr/bin/env python
import
Ptools
as
pt
from
numpy
import
*
import
pickle
import
sys
f
=
open
(
sys
.
argv
[
1
])
RessZs
=
pickle
.
load
(
f
)
Mmin2
=
pickle
.
load
(
f
)
lStep2
=
pickle
.
load
(
f
)
n
=
pickle
.
load
(
f
)
f
.
close
()
###############################
Ms
=
10
**
(
arange
(
n
)
*
lStep2
+
log10
(
Mmin2
)
)
#Ms = log10(Ms)
for
i
in
xrange
(
RessZs
.
shape
[
1
]):
pt
.
plot
(
Ms
,
RessZs
[:,
i
])
pt
.
axis
([
0
,
10
,
0
,
1
])
pt
.
show
()
Event Timeline
Log In to Comment