資料格式說明
資料格式:資料格式在前面也有些討論,其型式依需求而定,數值之項設值為單精度,其表示型式有多種變化,可參考第二章之應用。
How the Matlab works? How could you solve problems using Matlab? Let's have a chat on it
資料格式:資料格式在前面也有些討論,其型式依需求而定,數值之項設值為單精度,其表示型式有多種變化,可參考第二章之應用。
張貼者: 不留白老人 於 10/21/2006 06:49:00 下午 0 意見
標籤: Matlab
MATLAB 資料結構之連結#links
處理字母(character)及字串(string)資料時,Matlab亦常使用陣列結構。任何一個變數均可置入文字。無論是字母或字串都要使用撇號前後括出來。例如:
>> str1='hello'
str1 =
hello
>> size(str1)
ans =
1 5
>> str1(2:4)
ans =
ell
>> a=double(str1) %利用double函數轉換為ASCII code
a =
104 101 108 108 111
>> s=char(a) %利用char函數可以將ASCII轉回字串
s =
hello
>> s=char('a','big','sky','that','kisses','the', 'ground.')
s =
a
big
sky
that
kisses
the
ground.
>> size(s)
ans =
7 7
>> s(4,1:7)
ans =
that
>> s' %將其轉置後,可以看到字串中完全以一個字一個位置
ans =
abstktg
ikhihr
gyaseo
ts u
e n
s d
.
>> C={'a','big','sky','that','kisses','the', 'ground.'} %也可以使用細胞陣列
C =
'a' 'big' 'sky' 'that' 'kisses' 'the' 'ground.'
>> CC=cellstr(s) %利用cellstr函數也可以轉為細胞陣列
CC =
'a'
'big'
'sky'
'that'
'kisses'
'the'
'ground.'
>> ss=char(C) %利用char函數再將細胞矩陣轉回字串矩陣
ss =
a
big
sky
that
kisses
the
ground.
張貼者: 不留白老人 於 10/20/2006 01:38:00 下午 0 意見
標籤: Matlab
使用Links to the post這個功能時,可以將你要的資料存在另一個部落格之中,然後使用link將其連結過來。開始時,會出現輸入窗,其右上角可以選擇張貼到的部落格名稱,因此必須先行登入才能繼續進行。輸入窗之主題即為連結之名稱,等張貼完成後,此名稱即會出現在"Links to this post"之後,如:
Links to this post
資料格式說明
Create a Link
資料格式:資料格式在前面也有些討論,其型式依需求而定,數值之項設值為單精度,其表示型式有多種變化,可參考第二章之應用。
Posted by MARTIN at 10/21/2006 06:49:00 下午
張貼者: 不留白老人 於 10/17/2006 09:56:00 上午 0 意見
標籤: explore