<?xml version="1.0" encoding="UTF-8" ?><rdf:RDF 
  xmlns="http://purl.org/rss/1.0/"
  xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  xmlns:atom="http://www.w3.org/2005/Atom"
  xmlns:dc="http://purl.org/dc/elements/1.1/"
  xml:lang="ja">
  <channel rdf:about="http://w.atwiki.jp/cccaaa/">
    <title>cccaaa @ ウィキ</title>
    <link>http://w.atwiki.jp/cccaaa/</link>
    <atom:link href="https://w.atwiki.jp/cccaaa/rss10.xml" rel="self" type="application/rss+xml" />
    <atom:link rel="hub" href="https://pubsubhubbub.appspot.com" />
    <description>cccaaa @ ウィキ</description>

    <dc:language>ja</dc:language>
    <dc:date>2014-06-26T19:31:53+09:00</dc:date>
    <utime>1403778713</utime>

    <items>
      <rdf:Seq>
                <rdf:li rdf:resource="https://w.atwiki.jp/cccaaa/pages/19.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/cccaaa/pages/20.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/cccaaa/pages/15.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/cccaaa/pages/18.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/cccaaa/pages/17.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/cccaaa/pages/16.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/cccaaa/pages/2.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/cccaaa/pages/8.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/cccaaa/pages/9.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/cccaaa/pages/10.html" />
              </rdf:Seq>
    </items>
	
		
    
  </channel>
    <item rdf:about="https://w.atwiki.jp/cccaaa/pages/19.html">
    <title>Octaveあれこれ</title>
    <link>https://w.atwiki.jp/cccaaa/pages/19.html</link>
    <description>
      -データをロードする
 load &quot;dataname.*&quot;
-現在入力済みの変数.etcを表示
 whos
-特定のchのみを表示
 x=EEG(:,9)
 (EEGの中の9chのデータをxに代入する)
 x=EEG(start:end,ch)
-データの横軸を変えて表示(N=50000,Fs=1000のとき)
 N=50000;
 Fs=1000;
 sig50000=EEG(10001:60000,9);
 sig50000_fft=fft(sig50000);
 plot(0:Fs/N:Fs-Fs/N,abs(sig50000_fft))
-線に色を付ける
 plot(data,&#039;color&#039;)
 (color=r:red,b:blue,.etc...)
-フォントサイズを変えて表示
 set(gca,&#039;FontName&#039;,&#039;Helvetica&#039;,&#039;Fontsize&#039;,12)
 もしくは
 set(gca,&#039;Fontsize&#039;,12)
-ラベルを付ける
 legend(&#039;label_A&#039;,&#039;label_B&#039;,&#039;…&#039;);
 xlabel(&#039;&#039;)
 ylabel(&#039;&#039;)
-プロットした画像の見える範囲を変える
 axis([x_min x_max y_min y_max])    </description>
    <dc:date>2014-06-26T19:31:53+09:00</dc:date>
    <utime>1403778713</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/cccaaa/pages/20.html">
    <title>06/19</title>
    <link>https://w.atwiki.jp/cccaaa/pages/20.html</link>
    <description>
      電磁波

背景雑音
熱帯地方で発生する雷放射影響を受けた定常雑音であり
電離層の変化などにより日変化成分や季節トレンドを有する

異常信号
非定常信号のうち、地殻からの異常電磁放射を指し、
数日間にわたり数ピコテスラ程度の振幅上昇がみられる

突発的雑音
非定常信号のうち未処理の校正信号や近接雷など

--------------------------------------------------------

SSVPE

視覚に関する信号
見ようとするだけで観測できる-&gt;目しか動かせない人の入力信号に使える
10Hz信号を見てると10Hz,20Hz,40Hzにピークが検出される(倍音)
今やってる研究は注意が届く範囲がどこからどこまでかを検出
上下左右は既出だが奥行はまだやられてないからそれをやっている

--------------------------------------------------------
実習内容はSSVPE

データは２つそれぞれ違う周波数のLEDを見ているので
データ解析をして何Hzを見ているかあてる
SSVEP:データ
.vhdr:れどめ
.vmrk:データ点数が最後の2行に入っている
-&gt; A:6010-&gt;84609
-&gt; B:4760-&gt;72471
今回解析するのはO1の部位

サンプリング1000Hz

load SSVPE(A,B)
whos
   ===&gt; EEGという変数に入っている
plot(EEG(:,9))

------------------------
ばんしょ

EEG(:,9)を利用(O1)
Fs=1000Hz
何Hzで光るLEDを見ているか？
SSVEPのピークは何Hzか

サンプリング周波数Fsのデータを
N点でDFT＝＞X(k)
|X(k)| -&gt; (Fs/N)・k[Hz}の強さ（振幅スペクトル）

5~90に出る

plot(EEG(62000:63000,9))
sig1000=EEG(62001:63000,9);
sig10000=EEG(62001:72000,9);
sig1000_fft=fft(sig1000);
sig10000_fft=fft(sig10000);
plot(abs(sig1000_fft))
ylim([0 1000])
---------------------------------------------------------------------------
N=50000;
Fs=1000;
sig50000=EEG(10001:60000,9);
sig50000_fft=fft(sig50000);
plot(0:Fs/N:Fs-Fs/N,abs(sig50000_fft))
ylim([0 20000])
xlim([0 50])

---------------------------------------------------------------------------
N=10000;
Fs=1000;
sigA1=EEG(10001:20000,9);
sigA2=EEG(20001:30000,9);
sigA3=EEG(30001:40000,9);
sigA4=EEG(40001:50000,9);
sigA5=EEG(50001:60000,9);
sigA1_fft=abs(fft(sigA1));
sigA2_fft=abs(fft(sigA2));
sigA3_fft=abs(fft(sigA3));
sigA4_fft=abs(fft(sigA4));
sigA5_fft=abs(fft(sigA5));
sigA_fft=sigA1_fft+sigA2_fft+sigA3_fft+sigA4_fft+sigA5_fft;
sigA_fft=sigA_fft/5;
plot(0:Fs/N:Fs-Fs/N,abs(sigA_fft))
ylim([0 10000])
xlim([0 50])    </description>
    <dc:date>2014-06-26T18:49:44+09:00</dc:date>
    <utime>1403776184</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/cccaaa/pages/15.html">
    <title>講義まとめ</title>
    <link>https://w.atwiki.jp/cccaaa/pages/15.html</link>
    <description>
      **５月
-[[05/29]]
**６月
-[[06/05]]
-[[06/12]]
-[[06/19]]
-[[06/26]]
**７月
-[[07/03]]
-[[07/10]]
-[[07/17]]


*Octaveあれこれ
-[[Octaveあれこれ]]    </description>
    <dc:date>2014-06-26T18:23:58+09:00</dc:date>
    <utime>1403774638</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/cccaaa/pages/18.html">
    <title>06/26</title>
    <link>https://w.atwiki.jp/cccaaa/pages/18.html</link>
    <description>
      ゼミA最終課題
6/26
7/03
7/10
7/17


・脳波
・・左右50回ずつ見たデータ
・・１９ｃｈで観測したデータ
・・O1-T3-Fp1とO2-T4-Fp2の比較EEG1
・・O1-O2,T3-T4,Fp1-Fp2の比較EEG2
 O後頭葉
 T側頭葉
 Fp前頭葉
 
 1,左方
 2,右方

まとめるときにここで強く出るかを必ず出す（もしくは均等に）
結論を出す（何があったかや左右，前後の違い）
定量的な評価をする（なんとなくではなく数値的な表現）
信号処理は加算平均
目を動かす前を比較対象とする



・車両走行音
・・ｃｈ１，ｃｈ２の遅延情報から車が何km/hで走っているか推測
・・0.1秒間隔で角度を求める
マイク間距離30cm
サンプリング周波数44100Hz
歩行者と自動車が同じ方向に歩いている


1
はまだ　まつい　たけうち
2
まき　いっそ　ちん
車
はやし　ふくなが　はら    </description>
    <dc:date>2014-06-26T18:22:24+09:00</dc:date>
    <utime>1403774544</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/cccaaa/pages/17.html">
    <title>06/05</title>
    <link>https://w.atwiki.jp/cccaaa/pages/17.html</link>
    <description>
      EEG=脳電位エレクトロ～グラム
eog=眼電位(Electro OculoGram)エレクトロオキュログラム

配布されたファイルをロード
 load move_eye.mat
 
 サンプリング周波数1000
eog_right
-中央から右に動いた点
eog_left
-中央から右に動いた点

----
プロットしてみよう
plot(EEG_O1(eog_left2(1)-1000:eog_left2(1)+1000))

        O(オー)1です注意

・EEG_O1
-左後頭葉
・EEG_O2
-右後頭葉

からサッカード開始点±1000点のデータを使って同期加算(加算平均)

同期点：サッカード開始点(eog_left2,eog_right2)が格納されている

課題配分
left担当
-陳～原
right担当
-福永～磯谷

 加算数：2,5,10,50

-O1,O2の比較(加算数50)
-加算数の比較(加算数2,5,10,50)
S/N比もできれば？やる
課題説明ここまで
%-----------------------------------------------------
%初期化
x2=EEG_O1(eog_left2(1)-1000:eog_left2(1)+1000);
x2(1:end)=0;
x50=x2;
x10=x2;
x5 =x2;
%
%加算数2回
j=2;
for i=1:j
x2+=EEG_O1(eog_left2(i)-1000:eog_left2(i)+1000);
end
O1_02=x2/j;
%加算数5回
j=5;
for i=1:j
x5+=EEG_O1(eog_left2(i)-1000:eog_left2(i)+1000);
end
O1_05=x5/j;
%加算数10回
j=10;
for i=1:j
x10+=EEG_O1(eog_left2(i)-1000:eog_left2(i)+1000);
end
O1_10=x10/j;
%加算数50回
j=50;
for i=1:j
x50+=EEG_O1(eog_left2(i)-1000:eog_left2(i)+1000);
end
O1_50=x50/j;
%プロット
figure
hold on
plot(-1:.001:1,O1_02,&#039;b&#039;)
plot(-1:.001:1,O1_05,&#039;r&#039;)
plot(-1:.001:1,O1_10,&#039;m&#039;)
plot(-1:.001:1,O1_50,&#039;g&#039;)
hold off
title(&quot;O1_left&quot;)
legend(&quot;2times&quot;,&quot;5times&quot;,&quot;10times&quot;,&quot;50times&quot;)
xlabel(&quot;time(s)&quot;)
ylabel(&quot;voltage(uV)&quot;)
%-------------------------------------------------------
%初期化
x2=EEG_O1(eog_right2(1)-1000:eog_right2(1)+1000);
x2(1:end)=0;
x50=x2;
x10=x2;
x5 =x2;
%
%加算数2回
j=2;
for i=1:j
x2+=EEG_O1(eog_right2(i)-1000:eog_right2(i)+1000);
end
O1_02=x2/j;
%加算数5回
j=5;
for i=1:j
x5+=EEG_O1(eog_right2(i)-1000:eog_right2(i)+1000);
end
O1_05=x5/j;
%加算数10回
j=10;
for i=1:j
x10+=EEG_O1(eog_right2(i)-1000:eog_right2(i)+1000);
end
O1_10=x10/j;
%加算数50回
j=50;
for i=1:j
x50+=EEG_O1(eog_right2(i)-1000:eog_right2(i)+1000);
end
O1_50=x50/j;
%プロット
figure
hold on
plot(-1:.001:1,O1_02,&#039;b&#039;)
plot(-1:.001:1,O1_05,&#039;r&#039;)
plot(-1:.001:1,O1_10,&#039;m&#039;)
plot(-1:.001:1,O1_50,&#039;g&#039;)
hold off
title(&quot;O1_right&quot;)
legend(&quot;2times&quot;,&quot;5times&quot;,&quot;10times&quot;,&quot;50times&quot;)
xlabel(&quot;time(s)&quot;)
ylabel(&quot;voltage(uV)&quot;)
%-------------------------------------------------------
%初期化
x2=EEG_O2(eog_left2(1)-1000:eog_left2(1)+1000);
x2(1:end)=0;
x50=x2;
x10=x2;
x5 =x2;
%
%加算数2回
j=2;
for i=1:j
x2+=EEG_O2(eog_left2(i)-1000:eog_left2(i)+1000);
end
O2_02=x2/j;
%加算数5回
j=5;
for i=1:j
x5+=EEG_O2(eog_left2(i)-1000:eog_left2(i)+1000);
end
O2_05=x5/j;
%加算数10回
j=10;
for i=1:j
x10+=EEG_O2(eog_left2(i)-1000:eog_left2(i)+1000);
end
O2_10=x10/j;
%加算数50回
j=50;
for i=1:j
x50+=EEG_O2(eog_left2(i)-1000:eog_left2(i)+1000);
end
O2_50=x50/j;
%プロット
figure
hold on
plot(-1:.001:1,O2_02,&#039;b&#039;)
plot(-1:.001:1,O2_05,&#039;r&#039;)
plot(-1:.001:1,O2_10,&#039;m&#039;)
plot(-1:.001:1,O2_50,&#039;g&#039;)
hold off
title(&quot;O2_left&quot;)
legend(&quot;2times&quot;,&quot;5times&quot;,&quot;10times&quot;,&quot;50times&quot;)
xlabel(&quot;time(s)&quot;)
ylabel(&quot;voltage(uV)&quot;)
%-------------------------------------------------------
初期化
x2=EEG_O2(eog_right2(1)-1000:eog_right2(1)+1000);
x2(1:end)=0;
x50=x2;
x10=x2;
x5 =x2;
%
%加算数2回
j=2;
for i=1:j
x2+=EEG_O2(eog_right2(i)-1000:eog_right2(i)+1000);
end
O2_02=x2/j;
%加算数5回
j=5;
for i=1:j
x5+=EEG_O2(eog_right2(i)-1000:eog_right2(i)+1000);
end
O2_05=x5/j;
%加算数10回
j=10;
for i=1:j
x10+=EEG_O2(eog_right2(i)-1000:eog_right2(i)+1000);
end
O2_10=x10/j;
%加算数50回
j=50;
for i=1:j
x50+=EEG_O2(eog_right2(i)-1000:eog_right2(i)+1000);
end
O2_50=x50/j;
%プロット
figure
hold on
plot(-1:.001:1,O2_02,&#039;b&#039;)
plot(-1:.001:1,O2_05,&#039;r&#039;)
plot(-1:.001:1,O2_10,&#039;m&#039;)
plot(-1:.001:1,O2_50,&#039;g&#039;)
hold off
title(&quot;O2_right&quot;)
legend(&quot;2times&quot;,&quot;5times&quot;,&quot;10times&quot;,&quot;50times&quot;)
xlabel(&quot;time(s)&quot;)
ylabel(&quot;voltage(uV)&quot;)
%-------------------------------------------------------

%plot(-1:.001:1,x)    </description>
    <dc:date>2014-06-05T19:30:06+09:00</dc:date>
    <utime>1401964206</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/cccaaa/pages/16.html">
    <title>05/29</title>
    <link>https://w.atwiki.jp/cccaaa/pages/16.html</link>
    <description>
      *歩行と歩行間隔

$$frac{1}{2}$$
&lt;math&gt; frac{1}{2}&lt;/math&gt;

-右足の初期接地
-左足の初期接地

 一番最初に脚部が床面に接地した音＜足音という
---------------------------------------------------
-歩行間隔の抽出

 振幅の変動が明確
 振幅の変動が起こる直前

 振幅の変動が不明確
 周波数の高域成分が現れる直前

---------------------------------------------------
-結果
 条件
 個人経時特性　１０回の歩行を５０分おきに５回
 被験者の比較　１０回＊５度の歩行

それぞれの歩行間隔の平均と標準偏差、左右の差を示す


octaveのコマンド
|コマンド|説明|
|cd ****|****にディレクトリ移動|
|load(&#039;filename.**&#039;);|fileを読み込む|
|load filename.mat|.mat,.datのみこの形式でも可|
|whos|どの変数が保存されているか確認|
|xやyなど|変数を打つとその変数の中身が見れる|
|~|ただし音データなどは膨大な量なので見ないほうが吉|
|plot(変数)|変数をfigureにプロットする|
|plot(変数,&#039;r&#039;)|r=red,b=blue,m=magenta,…の色で表示|
|hold on|figureにプロットを重ね続ける|
-------
plot(y)
hold on
plot(itai5_r,zeros(1,length(itai5_1)),&quot;or&quot;)

--------

fft_y = fft(y);周波数変換
振幅スペクトル
fft_amp = abs(fft_y);
位相スペクトル
fft_ang = angle(fft_y);

ピコって出るノイズ


specgram(y,2048,44100,2048,1024)
スペクトルグラム：＊カラーバー

ケプストラム


----------------------------------
白板

足音2248点切り出し
フーリエ変換（振幅スペクトル）
１０底対数表示
逆フーリエ変換
リフタリング（０づめ）
フーリエ変換


フーリエ変換結果の見方
サンプリング周波数：Fs
FFTへの入力点数：N
FFTの結果（振幅スペクトル）：fftsig
fftsigのN点目は
   Fs * (n-1)
--------------- [Hz]
       N

------------------------------

x1 = y(itai5_1(1):itai5_1(1)+2047);
x1amp = abs(fft(x1));
x1log = log10(x1amp);

横軸は合わせないといけない
plot(0:Fs/N:Fs-Fs/N,x1log)

x1ifft = ifft(x1log);
plot(real(x1ifft))

左端部分がスペクトル包絡を示している
残り大部分はピッチを表している
緩やかにどう変化しているか

octave:22&gt; itai5_1_l
itai5_1_l =

    26361
    75463
   120903
   165995

octave:23&gt; itai5_1_r
itai5_1_r =

    52614
    98930
   144153
   190116

tmp=x1ifft;
tmp(49:2000)=0;
x1lift = tmp;
x1env(x1lift);
plot(0:Fs/N:Fs-Fs/N,x1log)
hold on
plot(0:Fs/N:Fs-Fs/N,x1env,&#039;r&#039;)


    xl1 = y(26361:26361+2047);
 xl1fft = fft(xl1);
 xl1log = log10(xl1fft);
xl1ifft = ifft(xl1log);
xl1lift = xl1ifft;
xl1lift(49:2000) = 0;
xl1fft2 = fft(xl1lift);
plot(real(xl1fft2))
xlim([0 1024])



------------------------------------
    xl1 = y(26361:26361+2047);
 xl1fft = fft(xl1);
 xl1log = log10(xl1fft);
xl1ifft = ifft(xl1log);
xl1lift = xl1ifft;
xl1lift(49:2000) = 0;
xl1fft2 = fft(xl1lift);
plot(real(xl1fft2))
xlim([0 1024])

    xl2 = y(75463:75463+2047);
 xl2fft = fft(xl2);
 xl2log = log10(xl2fft);
xl2ifft = ifft(xl2log);
xl2lift = xl2ifft;
xl2lift(49:2000) = 0;
xl2fft2 = fft(xl2lift);
plot(real(xl2fft2))
xlim([0 1024])

    xl3 = y(120903:120903+2047);
 xl3fft = fft(xl3);
 xl3log = log10(xl3fft);
xl3ifft = ifft(xl3log);
xl3lift = xl3ifft;
xl3lift(49:2000) = 0;
xl3fft2 = fft(xl3lift);
plot(real(xl3fft2))
xlim([0 1024])

    xl4 = y(165995:165995+2047);
 xl4fft = fft(xl4);
 xl4log = log10(xl4fft);
xl4ifft = ifft(xl4log);
xl4lift = xl4ifft;
xl4lift(49:2000) = 0;
xl4fft2 = fft(xl4lift);
plot(real(xl4fft2))
xlim([0 1024])

    xr1 = y(52614:52614+2047);
 xr1fft = fft(xr1);
 xr1log = log10(xr1fft);
xr1ifft = ifft(xr1log);
xr1lift = xr1ifft;
xr1lift(49:2000) = 0;
xr1fft2 = fft(xr1lift);
plot(real(xr1fft2))
xlim([0 1024])

    xr2 = y(98930:98930+2047);
 xr2fft = fft(xr2);
 xr2log = log10(xr2fft);
xr2ifft = ifft(xr2log);
xr2lift = xr2ifft;
xr2lift(49:2000) = 0;
xr2fft2 = fft(xr2lift);
plot(real(xr2fft2))
xlim([0 1024])

    xr3 = y(144153:144153+2047);
 xr3fft = fft(xr3);
 xr3log = log10(xr3fft);
xr3ifft = ifft(xr3log);
xr3lift = xr3ifft;
xr3lift(49:2000) = 0;
xr3fft2 = fft(xr3lift);
plot(real(xr3fft2))
xlim([0 1024])

    xr4 = y(190116:190116+2047);
 xr4fft = fft(xr4);
 xr4log = log10(xr4fft);
xr4ifft = ifft(xr4log);
xr4lift = xr4ifft;
xr4lift(49:2000) = 0;
xr4fft2 = fft(xr4lift);
plot(real(xr4fft2))
xlim([0 1024])



Fs =44100;
N=2048;
figure
hold on
plot(0:Fs/N:Fs-Fs/N,real(xl1fft2),&#039;b&#039;)
plot(0:Fs/N:Fs-Fs/N,real(xl2fft2),&#039;m&#039;)
plot(0:Fs/N:Fs-Fs/N,real(xl3fft2),&#039;c&#039;)
plot(real(xl4fft2),&#039;g&#039;)
plot(real(xr1fft2),&#039;b&#039;)
plot(real(xr2fft2),&#039;r&#039;)
plot(real(xr3fft2),&#039;g&#039;)
plot(real(xr4fft2),&#039;m&#039;)
xlim([0 1024])


Fs =44100;
N=2048;
figure
hold on
plot(0:Fs/N:Fs-Fs/N,real(xl1fft2),&#039;b&#039;)
plot(0:Fs/N:Fs-Fs/N,real(xl2fft2),&#039;m&#039;)
plot(0:Fs/N:Fs-Fs/N,real(xl3fft2),&#039;c&#039;)
plot(0:Fs/N:Fs-Fs/N,real(xl4fft2),&#039;g&#039;)
plot(0:Fs/N:Fs-Fs/N,real(xr1fft2),&#039;b&#039;)
plot(0:Fs/N:Fs-Fs/N,real(xr2fft2),&#039;r&#039;)
plot(0:Fs/N:Fs-Fs/N,real(xr3fft2),&#039;g&#039;)
plot(0:Fs/N:Fs-Fs/N,real(xr4fft2),&#039;m&#039;)
xlim([1 Fs/2])    </description>
    <dc:date>2014-06-05T17:48:12+09:00</dc:date>
    <utime>1401958092</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/cccaaa/pages/2.html">
    <title>メニュー</title>
    <link>https://w.atwiki.jp/cccaaa/pages/2.html</link>
    <description>
      **メニュー
-[[トップページ]]
//-[[プラグイン紹介&gt;プラグイン]]
//-[[まとめサイト作成支援ツール]]
-[[講義まとめ]]
-[[メニュー]]
-[[メニュー2]]

----

**更新履歴
#recent(20)

&amp;link_editmenu(text=ここを編集)    </description>
    <dc:date>2014-06-05T17:47:29+09:00</dc:date>
    <utime>1401958049</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/cccaaa/pages/8.html">
    <title>プラグイン/RSS</title>
    <link>https://w.atwiki.jp/cccaaa/pages/8.html</link>
    <description>
      *RSSを取り込んで一覧表示(showrss)
 #showrss(ここにＲＳＳのＵＲＬ)
もしくは
 #rss(ここにＲＳＳのＵＲＬを入力)
と入力することで指定したＲＳＳを取り込んで一覧表示します。

詳しくはこちらをご覧ください。
＝＞http://www1.atwiki.jp/guide/pages/266.html#id_b6d0b10d

----
たとえば、#showrss(http://iphone.appinfo.jp/rss/pricedown/,target=blank,countrss,lasttime) と入力すると以下のように表示されます。

#showrss(http://iphone.appinfo.jp/rss/pricedown/,target=blank,countrss,lasttime)
    </description>
    <dc:date>2014-06-05T17:13:42+09:00</dc:date>
    <utime>1401956022</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/cccaaa/pages/9.html">
    <title>プラグイン/動画(Youtube)</title>
    <link>https://w.atwiki.jp/cccaaa/pages/9.html</link>
    <description>
      * 動画(youtube)
@wikiのwikiモードでは
 #video(動画のURL)
と入力することで、動画を貼り付けることが出来ます。
詳しくはこちらをご覧ください。
＝＞http://atwiki.jp/guide/17_209_ja.html

また動画のURLはYoutubeのURLをご利用ください。
＝＞http://www.youtube.com/

-----


たとえば、#video(http://youtube.com/watch?v=kTV1CcS53JQ)と入力すると以下のように表示されます。


#video(http://youtube.com/watch?v=kTV1CcS53JQ)

    </description>
    <dc:date>2014-06-05T17:13:42+09:00</dc:date>
    <utime>1401956022</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/cccaaa/pages/10.html">
    <title>プラグイン</title>
    <link>https://w.atwiki.jp/cccaaa/pages/10.html</link>
    <description>
      @wikiにはいくつかの便利なプラグインがあります。

-----


#ls

-----

これ以外のプラグインについては@wikiガイドをご覧ください
=&gt;http://atwiki.jp/guide/
    </description>
    <dc:date>2014-06-05T17:13:42+09:00</dc:date>
    <utime>1401956022</utime>
  </item>
  </rdf:RDF>
