24小时热门版块排行榜    

北京石油化工学院2026年研究生招生接收调剂公告
查看: 1045  |  回复: 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 的主题更新
普通表情 高级回复 (可上传附件)
最具人气热帖推荐 [查看全部] 作者 回/看 最后发表
[考研] 一志愿华理,数一英一285求A区调剂 +8 AZMK 2026-03-25 11/550 2026-03-28 13:16 by AZMK
[考研] 277跪求调剂 +5 1915668 2026-03-27 9/450 2026-03-28 09:58 by zhshch
[考研] 291求调剂 +6 HanBeiNingZC 2026-03-24 6/300 2026-03-28 07:55 by baoball
[考研] 322求调剂 +6 宋明欣 2026-03-27 6/300 2026-03-28 07:08 by wangy0907
[考研] 315分求调剂 +7 26考研上岸版26 2026-03-26 7/350 2026-03-28 04:05 by fmesaito
[考研] 0856材料化工调剂 总分330 +10 zhubinhao 2026-03-27 10/500 2026-03-28 03:34 by fmesaito
[考研] 285求调剂 +4 AZMK 2026-03-27 7/350 2026-03-27 20:59 by AZMK
[考研] 一志愿陕师大生物学071000,298分,求调剂 +5 SYA! 2026-03-23 5/250 2026-03-27 09:29 by 不吃魚的貓
[考研] 316求调剂 +5 江辞666 2026-03-26 5/250 2026-03-27 08:08 by hypershenger
[考研] 351求调剂 +4 麦克阿磊 2026-03-24 4/200 2026-03-27 00:32 by wxiongid
[考研] 297求调剂 +6 田洪有 2026-03-26 6/300 2026-03-26 15:55 by 不吃魚的貓
[考研] 资源与环境 调剂申请(333分) +9 holy J 2026-03-21 9/450 2026-03-26 15:47 by 161765490
[考研] 281求调剂 +6 Koxui 2026-03-24 7/350 2026-03-26 15:37 by 无际的草原
[考研] 299求调剂 +4 15188958825 2026-03-25 4/200 2026-03-25 22:56 by 418490947
[考研] 26考研-291分-厦门大学(085601)-柔性电子学院材料工程专业求调剂 +3 min3 2026-03-24 4/200 2026-03-25 18:22 by xcjcqu
[考研] 085404电子信息284分求调剂 +4 13659058978 2026-03-24 4/200 2026-03-24 12:15 by syl20081243
[考研] 344求调剂 +3 desto 2026-03-24 3/150 2026-03-24 10:09 by 搏击518
[考研] 384求调剂 +3 子系博 2026-03-22 6/300 2026-03-23 21:45 by 子系博
[考研] 接收2026硕士调剂(学硕+专硕) +4 allen-yin 2026-03-23 6/300 2026-03-23 15:04 by 汪!?!
[考研] 328求调剂 +4 LHHL66 2026-03-23 4/200 2026-03-23 14:55 by lbsjt
信息提示
请填处理意见