Prev: traslation
Next: problem of index with system of ode
From: Kaisen deng on 25 Jul 2010 17:36 please tell me how to create the axes in this figure: http://home.simwe.com/attachment/201007/25/134279_1280092096Fwh7.jpg
From: dpb on 25 Jul 2010 17:45 Kaisen deng wrote: > please tell me how to create the axes in this figure: > http://home.simwe.com/attachment/201007/25/134279_1280092096Fwh7.jpg Create/write the tick labels manually via set(gca,'xticklabel', yourdesiredlabelcharacterarray); --
From: Kaisen deng on 25 Jul 2010 19:24 dpb <none(a)non.net> wrote in message <i2ibeu$b7b$1(a)news.eternal-september.org>... > Kaisen deng wrote: > > please tell me how to create the axes in this figure: > > http://home.simwe.com/attachment/201007/25/134279_1280092096Fwh7.jpg > > Create/write the tick labels manually via > > set(gca,'xticklabel', yourdesiredlabelcharacterarray); > Thanks so much. The problem is i don't know how to write the "times' symbol and 10 to the power of -4 manually in yourdesiredlabelcharacterarray.
From: us on 25 Jul 2010 19:40 "Kaisen deng" <csudeng(a)126.com> wrote in message <i2ih2j$24k$1(a)fred.mathworks.com>... > dpb <none(a)non.net> wrote in message <i2ibeu$b7b$1(a)news.eternal-september.org>... > > Kaisen deng wrote: > > > please tell me how to create the axes in this figure: > > > http://home.simwe.com/attachment/201007/25/134279_1280092096Fwh7.jpg > > > > Create/write the tick labels manually via > > > > set(gca,'xticklabel', yourdesiredlabelcharacterarray); > > > > Thanks so much. > > The problem is i don't know how to write the "times' symbol and 10 to the power of -4 manually in yourdesiredlabelcharacterarray. a hint: help sprintf; help cellstr; us
From: dpb on 26 Jul 2010 09:13
us wrote: > "Kaisen deng" <csudeng(a)126.com> wrote in message > <i2ih2j$24k$1(a)fred.mathworks.com>... >> dpb <none(a)non.net> wrote in message >> <i2ibeu$b7b$1(a)news.eternal-september.org>... >> > Kaisen deng wrote: >> > > please tell me how to create the axes in this figure: >> > > http://home.simwe.com/attachment/201007/25/134279_1280092096Fwh7.jpg >> > > Create/write the tick labels manually via >> > > set(gca,'xticklabel', yourdesiredlabelcharacterarray); >> > >> Thanks so much. >> >> The problem is i don't know how to write the "times' symbol and 10 to >> the power of -4 manually in yourdesiredlabelcharacterarray. > > a hint: > > help sprintf; > help cellstr; us, I just (probably re-)discovered that my initial thought re: Tex interpretation of the axis text would automagically do what OP wants doesn't appear possible in my earlier version (R12). Has Tex interpretation been extended to axis labels in current versions? If not, seems as though it would have to be done via text() function instead... -- |