24小时热门版块排行榜    

北京石油化工学院2026年研究生招生接收调剂公告
查看: 1052  |  回复: 11

yitianjian

木虫 (正式写手)

[交流] 求latex特定模板一个 20金币

在写论文,有熟悉latex的么?20个金币

我在写论文,遇到两个问题,求解:
1.杂志要求,稿件第一页是标题,作者,单位,页脚注释通讯作者(无标号),第二页是标题,摘要,第三页才是正文,求此模板一个,谢谢。(15金币)

2.matlab作图时,如何更改坐标,我是画的矩阵图,比如一个100x100的矩阵,画出来后坐标是按照矩阵维数标记的,0-100,0-100,如何修改成实际坐标(10个金币)

[ Last edited by sanko211 on 2009-4-12 at 16:57 ]
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖

yitianjian

木虫 (正式写手)

怎么没人回应啊 大家帮帮忙哈
2楼2009-04-11 20:45:40
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖

myplum

木虫 (小有名气)

★ ★
yitianjian(金币+1,VIP+0): 4-12 01:36
yitianjian(金币+1,VIP+0): 4-12 01:37
你可以到学校的图书资源下载一些文献看看啊,那里面有好多资源的,我们一般都在那里面下载看的。在本校的图书资源里是免费看的嘿嘿,帮忙顶一下了
3楼2009-04-11 21:15:06
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖

sitonyl

铁杆木虫 (文坛精英)


yitianjian(金币+1,VIP+0): 4-12 01:37
第二个问题:用axis命令修改即可。
zz
4楼2009-04-11 21:36:13
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖

tracylq


yitianjian(金币+1,VIP+0): 4-12 01:37
第二个问题:

用plot(x , y),而不是plot(y)

x是横坐标,y是纵坐标,把x和y的量对应变化一下就可以了
5楼2009-04-11 23:11:50
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖

yitianjian

木虫 (正式写手)

矩阵图是二维图,100x100的,x坐标,y坐标,点表示粒子数目,换句话说,图中每一个点表示每个位置(x,y)对应的粒子数目,作图时有现成的矩阵二进制文件,只需import数据,然后image作图,可是做出来以后是默认以维数为坐标的,如何更改为实际坐标,谢谢!
6楼2009-04-12 01:36:17
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖

fspdlh

金虫 (正式写手)

★ ★ ★ ★ ★ ★ ★ ★
yitianjian(金币+8,VIP+0):非常感谢你的帮助,问题已经基本解决 4-12 16:28
第二个问题去仿真编程版问比较好,在这里回复的人少也正常
用meshgrid函数,比如
[x y]=meshgrid(0:0.01:0.99,0:0.01:0.99);
mesh(x,y,z);
其中Z是lz的矩阵

或者用笨办法,用下面的几个属性

XTick, YTick, ZTick  
       vector of data values locating tick marksTick spacing.
   A vector of x-, y-, or z-data values that determine the location of tick marks along the respective axis. If you do not want tick marks displayed, set the respective property to the empty vector, [ ]. These vectors must contain monotonically increasing values.
XTickLabel, YTickLabel, ZTickLabel
  stringTick labels.
  A matrix of strings to use as labels for tick marks along the respective axis. These labels replace the numeric labels generated by MATLAB. If you do not specify enough text labels for all the tick marks, MATLAB uses all of the labels specified, then reuses the specified labels. For example, the statement set(gca,'XTickLabel',{'One';'Two';'Three';'Four'})
labels the first four tick marks on the x-axis and then reuses the labels until all ticks are labeled. Labels can be specified as cell arrays of strings, padded string matrices, string vectors separated by vertical slash characters, or as numeric vectors (where each number is implicitly converted to the equivalent string using num2str). All of the following are equivalent:
set(gca,'XTickLabel',{'1';'10';'100'})
set(gca,'XTickLabel','1|10|100')
set(gca,'XTickLabel',[1;10;100])
set(gca,'XTickLabel',['1  ';'10 ';'100'])
Note that tick labels do not interpret TeX character sequences (however, the Title, XLabel, YLabel, and ZLabel properties do).

[ Last edited by fspdlh on 2009-4-12 at 08:24 ]
7楼2009-04-12 08:15:39
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖

fspdlh

金虫 (正式写手)


yitianjian(金币+1,VIP+0): 4-12 16:28
8楼2009-04-12 08:22:07
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖

yitianjian

木虫 (正式写手)

现继续求解第二个问题,希望能给我一个模版文件,高分奖励额,谢谢
9楼2009-04-12 16:29:34
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖

fspdlh

金虫 (正式写手)


yitianjian(金币+1,VIP+0): 4-12 18:14
建议你重发个帖子或改一下标题,不然不知道你要模板啊
10楼2009-04-12 16:46:23
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖
相关版块跳转 我要订阅楼主 yitianjian 的主题更新
普通表情 高级回复 (可上传附件)
最具人气热帖推荐 [查看全部] 作者 回/看 最后发表
[考研] 305求调剂 +6 RuiFairyrui 2026-03-28 6/300 2026-03-28 21:26 by sanrepian
[考研] 一志愿中南大学化学0703总分337求调剂 +5 niko- 2026-03-27 5/250 2026-03-28 14:25 by 唐沐儿
[考研] 085701环境工程求调剂 +9 多久上课 2026-03-27 9/450 2026-03-28 03:58 by fmesaito
[考研] 086000调剂 +3 7901117076 2026-03-26 3/150 2026-03-27 21:34 by Jianing_Mi
[考研] 314求调剂 +3 溪云珂 2026-03-26 3/150 2026-03-27 11:20 by sanrepian
[考研] 材料调剂 +8 匹克i 2026-03-23 8/400 2026-03-27 08:11 by hypershenger
[硕博家园] 招收生物学/细胞生物学调剂 +3 IceGuo 2026-03-26 4/200 2026-03-27 05:35 by user003
[考研] 317求调剂 +7 蛋黄咸肉粽 2026-03-26 7/350 2026-03-27 02:29 by fmesaito
[考研] 343求调剂 +4 赠我一本书 2026-03-23 4/200 2026-03-27 00:40 by wxiongid
[考研] 327求调剂 +7 prayer13 2026-03-23 7/350 2026-03-26 20:48 by 不吃魚的貓
[考研] 0703化学求调剂 +3 丹青奶盖 2026-03-26 5/250 2026-03-26 20:11 by macy2011
[考研] 352求调剂 +4 大米饭! 2026-03-22 4/200 2026-03-26 16:40 by 不吃魚的貓
[考研] 打过很多竞赛,085406控制工程300分,求调剂 +3 askeladz 2026-03-26 3/150 2026-03-26 09:08 by 给你你注意休息
[考研] 一志愿中南大学化学学硕0703总分337求调剂 +7 niko- 2026-03-22 7/350 2026-03-25 20:14 by qingfeng258
[考研] 材料调剂 +3 iwinso 2026-03-23 3/150 2026-03-25 11:29 by greychen00
[考研] 318求调剂 +5 plum李子 2026-03-21 8/400 2026-03-25 09:26 by aa331100
[考研] 一志愿吉大化学322求调剂 +4 17501029541 2026-03-23 6/300 2026-03-24 10:21 by 戴围脖的小蚊子
[考研] 材料/农业专业,07/08开头均可,过线就行 +3 呵唔哦豁 2026-03-23 4/200 2026-03-23 22:30 by 汪!?!
[考研] 求老师收我 +3 zzh16938784 2026-03-23 3/150 2026-03-23 12:56 by ztnimte
[考研] 285求调剂 +6 ytter 2026-03-22 6/300 2026-03-22 12:09 by 星空星月
信息提示
请填处理意见