t*******r 发帖数: 22634 | 1 我用 gnuplot 画了你的第一张红线图。不过 gnuplot 只能上直角坐标系了,
对称美只能将就一下,懒人首先是省事!!!。。。gnuplot code 见下面,
图见附件:
set xrange [ 0 : 9 ] ; set yrange [ 0 : 5 ] ; set grid ;
plot 12-x linecolor -1 linewidth 3 ;
set style arrow 1 linecolor 1 linewidth 3 size 0.3, 10;
set arrow 1 from 0,0 to 0,5 as 1 ;
set arrow 2 from 0,5 to 5,0 as 1 ;
set arrow 3 from 5,0 to 5,5 as 1 ;
set arrow 4 from 5,5 to 9,1 as 1 ;
set arrow 5 from 9,1 to 0,1 as 1 ;
set arrow 6 from 0,1 to 1,0 as 1 ;
set arrow 7 from 1,0 to 1,5 as 1 ;
set arrow 8 fr... 阅读全帖 |
|
b******s 发帖数: 1089 | 2 转俩别人写的:
(1)
How to make your advisor happy:
don’t argue
immediately do whatever s/he tells you to
work as much as humanly possible
get tons of results
How to be a good scientist:
argue back; think about whether ideas make sense
do what makes sense to do next, even if it’s not what your advisor said
work hard, but in a way that’s sustainable and keeps you happy and healthy
get lots (maybe not tons) of deliberately-targeted results
Of course, a sane advisor will want the latter.
(2)
Favorite conve... 阅读全帖 |
|
r****y 发帖数: 1437 | 3 sure
you define you own color table, let it be
[1 1 1]
monotonically changes to [0 0 0]
e.g cmap = repmat([0:1/63:1]', 1, 3);
colormap(cmap);
If you use colorbar before this set of commands,
replot your colorbar to reflect the changes as well.
|
|
n****g 发帖数: 150 | 4 A0=0.000001;
B0=0.000001;
replot, and you'll see difference. |
|
s****a 发帖数: 2 | 5 Does anyone know how to combine two .eps files into one eps file?
I have two seperate plots in .eps file and my advisor ask me to put it into
one eps file.
Is there any convinient way to do it? I don;t want to replot them basically.
Thank, thanks! |
|