<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Scripting on Walking</title>
	<atom:link href="http://littlescript.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://littlescript.wordpress.com</link>
	<description>JUsT to Share and documentate Memoar of the Script</description>
	<lastBuildDate>Thu, 21 Oct 2010 15:42:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='littlescript.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Scripting on Walking</title>
		<link>http://littlescript.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://littlescript.wordpress.com/osd.xml" title="Scripting on Walking" />
	<atom:link rel='hub' href='http://littlescript.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Multilevel Helix</title>
		<link>http://littlescript.wordpress.com/2010/08/15/multilevel-helix/</link>
		<comments>http://littlescript.wordpress.com/2010/08/15/multilevel-helix/#comments</comments>
		<pubDate>Sun, 15 Aug 2010 13:39:31 +0000</pubDate>
		<dc:creator>ajunkwees</dc:creator>
				<category><![CDATA[Programs]]></category>

		<guid isPermaLink="false">http://littlescript.wordpress.com/?p=48</guid>
		<description><![CDATA[Actually I had this script beacuse an accident, when I was trying to make an equipotential line in order to modeling a geoelectrical method. but I found that my fail in this script can make it looks like a multilevel helix phi = 3.14; k=1; for m = n:n:r;     i(k)=m;     k=k+1;     [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=littlescript.wordpress.com&amp;blog=9039573&amp;post=48&amp;subd=littlescript&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Actually I had this script beacuse an accident, when I was trying to make an equipotential line in order to modeling a geoelectrical method. but I found that my fail in this script can make it looks like a multilevel helix <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<div id="_mcePaste"><span style="color:#800080;">phi = 3.14;</span></div>
<div id="_mcePaste"><span style="color:#800080;">k=1;</span></div>
<div id="_mcePaste"><span style="color:#800080;">for m = n:n:r;</span></div>
<div id="_mcePaste"><span style="color:#800080;">    i(k)=m;</span></div>
<div id="_mcePaste"><span style="color:#800080;">    k=k+1;    </span></div>
<div id="_mcePaste"><span style="color:#800080;">end</span></div>
<div id="_mcePaste"><span style="color:#800080;">V = ((I*rho)/(4*phi))*(1./i);</span></div>
<div id="_mcePaste"><span style="color:#800080;">a = [0:1:360];</span></div>
<div id="_mcePaste"><span style="color:#800080;">for p=1:length(i);</span></div>
<div id="_mcePaste"><span style="color:#800080;">    x(:,p) = i(p)*cos(a.*pi/180);</span></div>
<div id="_mcePaste"><span style="color:#800080;">    y(:,p) = i(p)*sin(a.*pi/180);</span></div>
<div id="_mcePaste"><span style="color:#800080;">    z(:,p) = linspace(0,100,length(a));</span></div>
<div id="_mcePaste"><span style="color:#800080;">end</span></div>
<div id="_mcePaste"><span style="color:#800080;">figure </span></div>
<div id="_mcePaste"><span style="color:#800080;">for nl=1:length(i);</span></div>
<div id="_mcePaste"><span style="color:#800080;">    plot3(x(:,:,nl),y(:,:,nl),z(:,:,nl))</span></div>
<div id="_mcePaste"><span style="color:#800080;">    %text(x(1,nl),y(1,nl),[num2str(V(nl),2)])</span></div>
<div id="_mcePaste"><span style="color:#800080;">    %title(&#8216;Nilai equipotential pada tiap lintasan&#8217;)</span></div>
<div id="_mcePaste"><span style="color:#800080;">    hold on</span></div>
<div id="_mcePaste"><span style="color:#800080;">    grid on</span></div>
<div id="_mcePaste"><span style="color:#800080;">end</span></div>
<p><span style="color:#800080;">phi = 3.14;<br /> k=1;for m = n:n:r;    i(k)=m;    k=k+1;    end<br /> V = ((I*rho)/(4*phi))*(1./i);<br /> a = [0:1:360];<br /> for p=1:length(i);    x(:,p) = i(p)*cos(a.*pi/180);    y(:,p) = i(p)*sin(a.*pi/180);    z(:,p) = linspace(0,100,length(a));end<br /> figure for nl=1:length(i);    plot3(x(:,:,nl),y(:,:,nl),z(:,:,nl))   </span></p>
<p><span style="color:#800080;"> %text(x(1,nl),y(1,nl),[num2str(V(nl),2)])    </span></p>
<p><span style="color:#800080;">%title(&#8216;Nilai equipotential pada tiap lintasan&#8217;)    hold on    grid on</span></p>
<p><span style="color:#800080;">end</span></p>
<p><span style="color:#800080;"><a href="http://littlescript.files.wordpress.com/2010/08/capture.jpg"><img class="alignleft size-full wp-image-51" title="Capture" src="http://littlescript.files.wordpress.com/2010/08/capture.jpg?w=490&#038;h=400" alt="" width="490" height="400" /></a><br /> </span></p>
<p><a href="http://littlescript.files.wordpress.com/2010/08/capture2.jpg"><img class="alignleft size-full wp-image-52" title="Capture2" src="http://littlescript.files.wordpress.com/2010/08/capture2.jpg?w=490&#038;h=422" alt="" width="490" height="422" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/littlescript.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/littlescript.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/littlescript.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/littlescript.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/littlescript.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/littlescript.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/littlescript.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/littlescript.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/littlescript.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/littlescript.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/littlescript.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/littlescript.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/littlescript.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/littlescript.wordpress.com/48/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=littlescript.wordpress.com&amp;blog=9039573&amp;post=48&amp;subd=littlescript&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://littlescript.wordpress.com/2010/08/15/multilevel-helix/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<georss:point>-6.884594 107.609430</georss:point>
		<geo:lat>-6.884594</geo:lat>
		<geo:long>107.609430</geo:long>
		<media:content url="http://0.gravatar.com/avatar/44d6d74a7e2116043e72c336158aa6cd?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">agung wahyu saputro</media:title>
		</media:content>

		<media:content url="http://littlescript.files.wordpress.com/2010/08/capture.jpg" medium="image">
			<media:title type="html">Capture</media:title>
		</media:content>

		<media:content url="http://littlescript.files.wordpress.com/2010/08/capture2.jpg" medium="image">
			<media:title type="html">Capture2</media:title>
		</media:content>
	</item>
		<item>
		<title>Installing Google Skecth Up on Windows 7</title>
		<link>http://littlescript.wordpress.com/2010/08/08/installing-google-skecth-up-on-windows-7/</link>
		<comments>http://littlescript.wordpress.com/2010/08/08/installing-google-skecth-up-on-windows-7/#comments</comments>
		<pubDate>Sun, 08 Aug 2010 10:18:29 +0000</pubDate>
		<dc:creator>ajunkwees</dc:creator>
				<category><![CDATA[tricks]]></category>

		<guid isPermaLink="false">http://littlescript.wordpress.com/?p=42</guid>
		<description><![CDATA[  I Don&#8217;t know what can I do when Iam stuck installing some programs in my windows 7. I think that previous version of windows (XP) is the most compatible. Actually I almost desperate and going to install dual OS in order to install some programs in my laptop. like ArcGis 9.2, I found that [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=littlescript.wordpress.com&amp;blog=9039573&amp;post=42&amp;subd=littlescript&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p> </p>
<p>I Don&#8217;t know what can I do when Iam stuck installing some programs in my windows 7. I think that previous version of windows (XP) is the most compatible.<br />
Actually I almost desperate and going to install dual OS in order to install some programs in my laptop.</p>
<p>like ArcGis 9.2, I found that in windows 7 it can&#8217;t run. finally, It is no problem when my friend accomodates me by bought ArcGis 9.3 that running well in windows 7. problem fixed.</p>
<p>I got a problem again,  when I was installing google sketch up. I found that an error occured before the installation finished. However I must find the solution , and I start googling. In hours, I found that the error message that say&#8217;</p>
<p>&#8221; An error occurred during the installation of assembly &#8216;Microsoft.VC80.ATL,type=&#8221;win32&#8243;,version=&#8221;8.0.50727.4053&#8243;,publicKeyToken=&#8221;1fc8b3b9a1e18e3b&#8221;,processorArchitecture=&#8221;x86&#8243;&#8216;. Please refer to Help and Support for more information. HRESULT: 0x800736FD.</p>
<p>&#8220;</p>
<p>can be fixed with registry editor.Actually I don&#8217;t know what the message means, but in my searching i found that error caused by &#8220;running out registry space&#8221;.</p>
<p>so the step for solution is :</p>
<p>1. go to registry editor</p>
<p>2. find the HKEY_LOCAL_MACHINE\System\CurrentControlSet</p>
<p>3. Increase the registry space by changing value 5d00000(in hex) which is 97517568 to value fffffffff (in hex value).</p>
<p>I restart my machine, reinstall google sketch up and finally&#8230; it works. Thaks to my reference for it&#8217; </p>
<p><a rel="nofollow" href="http://geo.geek.nz/development/running-out-of-registry-space-with-microsoft-windows-7-and-arcgis-9-3-1-or-other-programs/" target="_blank">http://geo.geek.nz/development/running-out-of-registry-space-with-microsoft-windows-7-and-arcgis-9-3-1-or-other-programs/</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/littlescript.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/littlescript.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/littlescript.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/littlescript.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/littlescript.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/littlescript.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/littlescript.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/littlescript.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/littlescript.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/littlescript.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/littlescript.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/littlescript.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/littlescript.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/littlescript.wordpress.com/42/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=littlescript.wordpress.com&amp;blog=9039573&amp;post=42&amp;subd=littlescript&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://littlescript.wordpress.com/2010/08/08/installing-google-skecth-up-on-windows-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<georss:point>-6.884594 107.609430</georss:point>
		<geo:lat>-6.884594</geo:lat>
		<geo:long>107.609430</geo:long>
		<media:content url="http://0.gravatar.com/avatar/44d6d74a7e2116043e72c336158aa6cd?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">agung wahyu saputro</media:title>
		</media:content>
	</item>
		<item>
		<title>membuat kurva interval kecepatan // make an interval velocity curve</title>
		<link>http://littlescript.wordpress.com/2009/08/24/membuat-kurva-interval-kecepatan-make-an-interval-velocity-curve/</link>
		<comments>http://littlescript.wordpress.com/2009/08/24/membuat-kurva-interval-kecepatan-make-an-interval-velocity-curve/#comments</comments>
		<pubDate>Mon, 24 Aug 2009 02:44:20 +0000</pubDate>
		<dc:creator>ajunkwees</dc:creator>
				<category><![CDATA[Programs]]></category>
		<category><![CDATA[geophysic programming]]></category>
		<category><![CDATA[Matlab]]></category>

		<guid isPermaLink="false">http://littlescript.wordpress.com/?p=34</guid>
		<description><![CDATA[prototipe untuk program downhole seismik //prototipe for downhole seismic program % u/ downhole seismic % look for velocity in vertical position load tz.dat load vp2a.dat load vs2.dat tp=tz(:,2); ts=tz(:,3); z=tz(:,1); figure(1) plot(z,tp,&#8217;*b&#8217;),title(&#8216;waktu tempuh gel P terhadap kedalaman&#8217;),xlabel(&#8216;depth (m)&#8217;),ylabel(&#8216;tp (ms)&#8217;) figure(2) plot(z,ts,&#8217;*g&#8217;),title(&#8216;waktu tempuh gel s terhadap kedalaman&#8217;),xlabel(&#8216;depth (m)&#8217;),ylabel(&#8216;ts (ms)&#8217;) % mencari kecepatan gel P dan gel [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=littlescript.wordpress.com&amp;blog=9039573&amp;post=34&amp;subd=littlescript&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>prototipe untuk program downhole seismik //<em>prototipe for downhole seismic program</em></p>
<p><span style="color:#0000ff;">% u/ downhole seismic</span></p>
<p><span style="color:#0000ff;">% look for velocity in vertical position</span></p>
<p><span style="color:#0000ff;"> </span></p>
<p><span style="color:#0000ff;">load tz.dat</span></p>
<p><span style="color:#0000ff;">load vp2a.dat</span></p>
<p><span style="color:#0000ff;">load vs2.dat</span></p>
<p><span style="color:#0000ff;">tp=tz(:,2);</span></p>
<p><span style="color:#0000ff;">ts=tz(:,3);</span></p>
<p><span style="color:#0000ff;">z=tz(:,1);</span></p>
<p><span style="color:#0000ff;">figure(1)</span></p>
<p><span style="color:#0000ff;">plot(z,tp,&#8217;*b&#8217;),title(&#8216;waktu tempuh gel P terhadap kedalaman&#8217;),xlabel(&#8216;depth (m)&#8217;),ylabel(&#8216;tp (ms)&#8217;)</span></p>
<p><span style="color:#0000ff;">figure(2)</span></p>
<p><span style="color:#0000ff;">plot(z,ts,&#8217;*g&#8217;),title(&#8216;waktu tempuh gel s terhadap kedalaman&#8217;),xlabel(&#8216;depth (m)&#8217;),ylabel(&#8216;ts (ms)&#8217;)</span></p>
<p><span style="color:#0000ff;">% mencari kecepatan gel P dan gel S</span></p>
<p><span style="color:#0000ff;">n=length(z)-1;</span></p>
<p><span style="color:#0000ff;">for i=1:1:n</span></p>
<p><span style="color:#0000ff;">vp(i)=(z(i+1)-z(i))/(tp(i+1)-tp(i));</span></p>
<p><span style="color:#0000ff;">vs(i)=(z(i+1)-z(i))/(ts(i+1)-ts(i));</span></p>
<p><span style="color:#0000ff;">r(i,:)=z(i):z(i+1)</span></p>
<p><span style="color:#0000ff;">end</span></p>
<p><span style="color:#0000ff;">% V as depth function with range</span></p>
<p><span style="color:#0000ff;">k=[r(:,1)</span></p>
<p><span style="color:#0000ff;">r(:,2)]</span></p>
<p><span style="color:#0000ff;">g=sort(k)</span></p>
<p><span style="color:#0000ff;">% to be continue&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;</span></p>
<p><span style="color:#0000ff;">vp2=vp2a;</span></p>
<p><span style="color:#0000ff;">figure(3)</span></p>
<p><span style="color:#0000ff;">plot(g-23,vp2),xlabel(&#8216;kedalaman (m)&#8217;),ylabel(&#8216;vs&#8217;),title(&#8216;Vs terhadap kedalaman&#8217;)</span></p>
<p><span style="color:#0000ff;">vpt=vp&#8217;;</span></p>
<p><span style="color:#0000ff;">vst=vs&#8217;;</span></p>
<p><span style="color:#0000ff;">vs2=vs2;</span></p>
<p><span style="color:#0000ff;">figure(4)</span></p>
<p><span style="color:#0000ff;">plot(g,vs2),xlabel(&#8216;kedalaman (m)&#8217;),ylabel(&#8216;vs&#8217;),title(&#8216;Vs terhadap kedalaman&#8217;)</span></p>
<p><span style="color:#0000ff;">
<a href='http://littlescript.wordpress.com/2009/08/24/membuat-kurva-interval-kecepatan-make-an-interval-velocity-curve/image1-4/' title='Image1'><img data-attachment-id='35' data-orig-size='567,493' data-liked='0'width="150" height="130" src="http://littlescript.files.wordpress.com/2009/08/image13.jpg?w=150&#038;h=130" class="attachment-thumbnail" alt="Image1" title="Image1" /></a>
<a href='http://littlescript.wordpress.com/2009/08/24/membuat-kurva-interval-kecepatan-make-an-interval-velocity-curve/image2-3/' title='Image2'><img data-attachment-id='36' data-orig-size='563,495' data-liked='0'width="150" height="131" src="http://littlescript.files.wordpress.com/2009/08/image22.jpg?w=150&#038;h=131" class="attachment-thumbnail" alt="Image2" title="Image2" /></a>
<br />
</span></p>
<p class="MsoNormal">(program ini sebagian hanya dummy dan tidak terpakai)</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/littlescript.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/littlescript.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/littlescript.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/littlescript.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/littlescript.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/littlescript.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/littlescript.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/littlescript.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/littlescript.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/littlescript.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/littlescript.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/littlescript.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/littlescript.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/littlescript.wordpress.com/34/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=littlescript.wordpress.com&amp;blog=9039573&amp;post=34&amp;subd=littlescript&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://littlescript.wordpress.com/2009/08/24/membuat-kurva-interval-kecepatan-make-an-interval-velocity-curve/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/44d6d74a7e2116043e72c336158aa6cd?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">agung wahyu saputro</media:title>
		</media:content>

		<media:content url="http://littlescript.files.wordpress.com/2009/08/image13.jpg?w=150" medium="image">
			<media:title type="html">Image1</media:title>
		</media:content>

		<media:content url="http://littlescript.files.wordpress.com/2009/08/image22.jpg?w=150" medium="image">
			<media:title type="html">Image2</media:title>
		</media:content>
	</item>
		<item>
		<title>Layer With Value density or velocity</title>
		<link>http://littlescript.wordpress.com/2009/08/23/layer-with-value-density-or-velocity/</link>
		<comments>http://littlescript.wordpress.com/2009/08/23/layer-with-value-density-or-velocity/#comments</comments>
		<pubDate>Sun, 23 Aug 2009 00:03:17 +0000</pubDate>
		<dc:creator>ajunkwees</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[geology programming]]></category>
		<category><![CDATA[geophysic programming]]></category>
		<category><![CDATA[tomography]]></category>

		<guid isPermaLink="false">http://littlescript.wordpress.com/?p=25</guid>
		<description><![CDATA[Program ini berisi menampilkan lapisan 2 dimensi yang mempunyai nilai densitas atau kecepatan // this program contain showing a 2-D layer that have a value density or velocity Program ini prototipe untuk tomografi // This is Prototipe for tomography Pada penjalanan program kita diminta untuk menuliskan koordinat yang akan di chek atau dicari kecepatannya, hasilnya [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=littlescript.wordpress.com&amp;blog=9039573&amp;post=25&amp;subd=littlescript&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal">Program ini berisi menampilkan lapisan 2 dimensi yang mempunyai nilai densitas atau kecepatan // <em>this program contain showing a 2-D layer that have a value density or velocity</em></p>
<p class="MsoNormal">Program ini prototipe untuk tomografi // <em>This is Prototipe for tomography</em></p>
<p class="MsoNormal">Pada penjalanan program kita diminta untuk menuliskan koordinat yang akan di chek atau dicari kecepatannya, hasilnya ditampilkan di layar</p>
<p>script :</p>
<div style="border:1pt solid windowtext;padding:1pt 4pt;">
<p class="MsoNormal" style="border:medium none;margin-bottom:6pt;line-height:normal;padding:0;"><span style="color:#0000ff;">% PROGRAM LAYER TOMOGRAFI<br />
</span></p>
<p class="MsoNormal" style="border:medium none;margin-bottom:6pt;line-height:normal;padding:0;"><span style="color:#0000ff;">clear;</span></p>
<p class="MsoNormal" style="border:medium none;margin-bottom:6pt;line-height:normal;padding:0;"><span style="color:#0000ff;">clc;</span></p>
<p class="MsoNormal" style="border:medium none;margin-bottom:6pt;line-height:normal;padding:0;"><span style="color:#0000ff;">a=0:100;b=0:100;</span></p>
<p class="MsoNormal" style="border:medium none;margin-bottom:6pt;line-height:normal;padding:0;"><span style="color:#0000ff;">[x,y]=meshgrid(a,b);</span></p>
<p class="MsoNormal" style="border:medium none;margin-bottom:6pt;line-height:normal;padding:0;"><span style="color:#0000ff;">plot(x,y,&#8217;.white&#8217;),hold on % horee..coba coba kata &#8220;white&#8221; eh bisa</span></p>
<p class="MsoNormal" style="border:medium none;margin-bottom:6pt;line-height:normal;padding:0;"><span style="color:#0000ff;">plot(0,10,&#8217;*r&#8217;);plot(0,30,&#8217;*r&#8217;);plot(0,60,&#8217;*r&#8217;);plot(0,90,&#8217;*r&#8217;),hold on;</span></p>
<p class="MsoNormal" style="border:medium none;margin-bottom:6pt;line-height:normal;padding:0;"><span style="color:#0000ff;"> </span></p>
<p class="MsoNormal" style="border:medium none;margin-bottom:6pt;line-height:normal;padding:0;"><span style="color:#0000ff;">% gambar template</span></p>
<p class="MsoNormal" style="border:medium none;margin-bottom:6pt;line-height:normal;padding:0;"><span style="color:#0000ff;">a=0:100;b=80:100;</span></p>
<p class="MsoNormal" style="border:medium none;margin-bottom:6pt;line-height:normal;padding:0;"><span style="color:#0000ff;">[x,y]=meshgrid(a,b);</span></p>
<p class="MsoNormal" style="border:medium none;margin-bottom:6pt;line-height:normal;padding:0;"><span style="color:#0000ff;">plot(x,y,&#8217;.b&#8217;),hold on</span></p>
<p class="MsoNormal" style="border:medium none;margin-bottom:6pt;line-height:normal;padding:0;"><span style="color:#0000ff;">a=50:100;b=60:80;</span></p>
<p class="MsoNormal" style="border:medium none;margin-bottom:6pt;line-height:normal;padding:0;"><span style="color:#0000ff;">[x,y]=meshgrid(a,b);</span></p>
<p class="MsoNormal" style="border:medium none;margin-bottom:6pt;line-height:normal;padding:0;"><span style="color:#0000ff;">plot(x,y,&#8217;.b&#8217;),hold on</span></p>
<p class="MsoNormal" style="border:medium none;margin-bottom:6pt;line-height:normal;padding:0;"><span style="color:#0000ff;"> </span></p>
<p class="MsoNormal" style="border:medium none;margin-bottom:6pt;line-height:normal;padding:0;"><span style="color:#0000ff;"> </span></p>
<p class="MsoNormal" style="border:medium none;margin-bottom:6pt;line-height:normal;padding:0;"><span style="color:#0000ff;">a=0:50;b=60:80;</span></p>
<p class="MsoNormal" style="border:medium none;margin-bottom:6pt;line-height:normal;padding:0;"><span style="color:#0000ff;">[x,y]=meshgrid(a,b);</span></p>
<p class="MsoNormal" style="border:medium none;margin-bottom:6pt;line-height:normal;padding:0;"><span style="color:#0000ff;">plot(x,y,&#8217;.g&#8217;)</span></p>
<p class="MsoNormal" style="border:medium none;margin-bottom:6pt;line-height:normal;padding:0;"><span style="color:#0000ff;">a=0:100;b=40:60;</span></p>
<p class="MsoNormal" style="border:medium none;margin-bottom:6pt;line-height:normal;padding:0;"><span style="color:#0000ff;">[x,y]=meshgrid(a,b);</span></p>
<p class="MsoNormal" style="border:medium none;margin-bottom:6pt;line-height:normal;padding:0;"><span style="color:#0000ff;">plot(x,y,&#8217;.g&#8217;)</span></p>
<p class="MsoNormal" style="border:medium none;margin-bottom:6pt;line-height:normal;padding:0;"><span style="color:#0000ff;"> </span></p>
<p class="MsoNormal" style="border:medium none;margin-bottom:6pt;line-height:normal;padding:0;"><span style="color:#0000ff;">a=0:100;b=20:40;</span></p>
<p class="MsoNormal" style="border:medium none;margin-bottom:6pt;line-height:normal;padding:0;"><span style="color:#0000ff;">[x,y]=meshgrid(a,b);</span></p>
<p class="MsoNormal" style="border:medium none;margin-bottom:6pt;line-height:normal;padding:0;"><span style="color:#0000ff;">plot(x,y,&#8217;.c&#8217;)</span></p>
<p class="MsoNormal" style="border:medium none;margin-bottom:6pt;line-height:normal;padding:0;"><span style="color:#0000ff;">a=0:100;b=0:20;</span></p>
<p class="MsoNormal" style="border:medium none;margin-bottom:6pt;line-height:normal;padding:0;"><span style="color:#0000ff;">[x,y]=meshgrid(a,b);</span></p>
<p class="MsoNormal" style="border:medium none;margin-bottom:6pt;line-height:normal;padding:0;"><span style="color:#0000ff;">plot(x,y,&#8217;.m&#8217;)</span></p>
<p class="MsoNormal" style="border:medium none;margin-bottom:6pt;line-height:normal;padding:0;"><span style="color:#0000ff;"> </span></p>
<p class="MsoNormal" style="border:medium none;margin-bottom:6pt;line-height:normal;padding:0;"><span style="color:#0000ff;">a=input(&#8216;masukkan nilai a &#8216;)</span></p>
<p class="MsoNormal" style="border:medium none;margin-bottom:6pt;line-height:normal;padding:0;"><span style="color:#0000ff;">b=input(&#8216;masukkan nilai b &#8216;)</span></p>
<p class="MsoNormal" style="border:medium none;margin-bottom:6pt;line-height:normal;padding:0;"><span style="color:#0000ff;">% inisiasi kecepatan tiap lapisan</span></p>
<p class="MsoNormal" style="border:medium none;margin-bottom:6pt;line-height:normal;padding:0;"><span style="color:#0000ff;">if (b&lt;=20)</span></p>
<p class="MsoNormal" style="border:medium none;margin-bottom:6pt;line-height:normal;padding:0;"><span style="color:#0000ff;"> v=3500;</span></p>
<p class="MsoNormal" style="border:medium none;margin-bottom:6pt;line-height:normal;padding:0;"><span style="color:#0000ff;"> elseif b&lt;=40</span></p>
<p class="MsoNormal" style="border:medium none;margin-bottom:6pt;line-height:normal;padding:0;"><span style="color:#0000ff;"> v=3000;</span></p>
<p class="MsoNormal" style="border:medium none;margin-bottom:6pt;line-height:normal;padding:0;"><span style="color:#0000ff;"> elseif ((b&lt;=80)&amp;(a&lt;=50))||((b&lt;=60)&amp;(a&gt;50))</span></p>
<p class="MsoNormal" style="border:medium none;margin-bottom:6pt;line-height:normal;padding:0;"><span style="color:#0000ff;"> v=2500;</span></p>
<p class="MsoNormal" style="border:medium none;margin-bottom:6pt;line-height:normal;padding:0;"><span style="color:#0000ff;"> else</span></p>
<p class="MsoNormal" style="border:medium none;margin-bottom:6pt;line-height:normal;padding:0;"><span style="color:#0000ff;"> v=2000; </span></p>
<p class="MsoNormal" style="border:medium none;margin-bottom:6pt;line-height:normal;padding:0;"><span style="color:#0000ff;">end </span></p>
<p class="MsoNormal" style="border:medium none;margin-bottom:6pt;line-height:normal;padding:0;"><span style="color:#0000ff;"> </span></p>
<p class="MsoNormal" style="border:medium none;margin-bottom:6pt;line-height:normal;padding:0;"><span style="color:#0000ff;">disp(['maka kecepatan adalah =' num2str(v)])</span></p>
</div>
<p><img class="alignleft size-full wp-image-26" title="Image1" src="http://littlescript.files.wordpress.com/2009/08/image12.jpg?w=490" alt="Image1"   /></p>
<p><img class="alignleft size-full wp-image-27" title="Image2" src="http://littlescript.files.wordpress.com/2009/08/image21.jpg?w=490" alt="Image2"   /></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/littlescript.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/littlescript.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/littlescript.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/littlescript.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/littlescript.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/littlescript.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/littlescript.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/littlescript.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/littlescript.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/littlescript.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/littlescript.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/littlescript.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/littlescript.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/littlescript.wordpress.com/25/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=littlescript.wordpress.com&amp;blog=9039573&amp;post=25&amp;subd=littlescript&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://littlescript.wordpress.com/2009/08/23/layer-with-value-density-or-velocity/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/44d6d74a7e2116043e72c336158aa6cd?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">agung wahyu saputro</media:title>
		</media:content>

		<media:content url="http://littlescript.files.wordpress.com/2009/08/image12.jpg" medium="image">
			<media:title type="html">Image1</media:title>
		</media:content>

		<media:content url="http://littlescript.files.wordpress.com/2009/08/image21.jpg" medium="image">
			<media:title type="html">Image2</media:title>
		</media:content>
	</item>
		<item>
		<title>Mencari nilai koordinat // look for coordinate value</title>
		<link>http://littlescript.wordpress.com/2009/08/22/mencari-nilai-koordinat-look-for-coordinate-value/</link>
		<comments>http://littlescript.wordpress.com/2009/08/22/mencari-nilai-koordinat-look-for-coordinate-value/#comments</comments>
		<pubDate>Sat, 22 Aug 2009 23:36:14 +0000</pubDate>
		<dc:creator>ajunkwees</dc:creator>
				<category><![CDATA[Programs]]></category>
		<category><![CDATA[data sorting]]></category>

		<guid isPermaLink="false">http://littlescript.wordpress.com/?p=20</guid>
		<description><![CDATA[Mencari nilai koordinat Ada file”ref.dat” yang berisi nomor titik yang belum ada koordinatnya. Ada file kedua “val.dat”yang berupa file koordinat. Link dari dua data tersebut adalah ada nomer point( point number), yang jika nomernya sama, maka koordinatnya juga akan sama. // There is file &#8220;ref.dat&#8221; contain number of points. And there is 2nd file &#8220;val.dat&#8221; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=littlescript.wordpress.com&amp;blog=9039573&amp;post=20&amp;subd=littlescript&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;">Mencari nilai koordinat</p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;">Ada file”<a href="http://www.divshare.com/download/8266141-6f9">ref.dat</a>” yang berisi nomor titik yang belum ada koordinatnya. Ada file kedua “<a href="http://www.divshare.com/download/8266111-74a">val.dat</a>”yang berupa file koordinat. Link dari dua data tersebut adalah ada nomer point( point number), yang jika nomernya sama, maka koordinatnya juga akan sama.</p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;">// There is file &#8220;ref.dat&#8221; contain number of points. And there is 2nd file &#8220;val.dat&#8221; contain coordinate. Link of both of them is the point number. If the number is same,  so the  coordinate  will  copied</p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;">Jumlah data pada “ref.dat” jauh lebih besar dari “val.dat” karena merupakan titik tiap ketinggian dengan interval tertentu</p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;">// Number of points of &#8221; ref.dat&#8221; larger than &#8220;val.dat&#8221; because this is points at each level  altitude with  certain interval</p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;">
<div style="border:1pt solid windowtext;padding:1pt 0 1pt 4pt;">
<p class="MsoNormal" style="border:medium none;margin-bottom:.0001pt;line-height:normal;padding:0;"><span style="color:#0000ff;">% program untuk mencari koordinat</span></p>
<p class="MsoNormal" style="border:medium none;margin-bottom:.0001pt;line-height:normal;padding:0;"><span style="color:#0000ff;">clear</span></p>
<p class="MsoNormal" style="border:medium none;margin-bottom:.0001pt;line-height:normal;padding:0;"><span style="color:#0000ff;">clc</span></p>
<p class="MsoNormal" style="border:medium none;margin-bottom:.0001pt;line-height:normal;padding:0;"><span style="color:#0000ff;">load ref.dat  % file ini sebagai input nomer titik yang dicari koordinatnya</span></p>
<p class="MsoNormal" style="border:medium none;margin-bottom:.0001pt;line-height:normal;padding:0;"><span style="color:#0000ff;">load val.dat  % file ini adalah input nilai koordinat tiap point</span></p>
<p class="MsoNormal" style="border:medium none;margin-bottom:.0001pt;line-height:normal;padding:0;"><span style="color:#0000ff;">a=ref(:,4);</span></p>
<p class="MsoNormal" style="border:medium none;margin-bottom:.0001pt;line-height:normal;padding:0;"><span style="color:#0000ff;">b=val(:,3);c=val(:,1);d=val(:,2);</span></p>
<p class="MsoNormal" style="border:medium none;margin-bottom:.0001pt;line-height:normal;padding:0;"><span style="color:#0000ff;"> </span></p>
<p class="MsoNormal" style="border:medium none;margin-bottom:.0001pt;line-height:normal;padding:0;"><span style="color:#0000ff;">for j=1:1:length(a)</span></p>
<p class="MsoNormal" style="border:medium none;margin-bottom:.0001pt;line-height:normal;padding:0;"><span style="color:#0000ff;"> for i=1:1:length(b)</span></p>
<p class="MsoNormal" style="border:medium none;margin-bottom:.0001pt;line-height:normal;padding:0;"><span style="color:#0000ff;"> if a(j)==b(i)</span></p>
<p class="MsoNormal" style="border:medium none;margin-bottom:.0001pt;line-height:normal;padding:0;"><span style="color:#0000ff;"> x(j)=c(i);y(j)=d(i);</span></p>
<p class="MsoNormal" style="border:medium none;margin-bottom:.0001pt;line-height:normal;padding:0;"><span style="color:#0000ff;"> else</span></p>
<p class="MsoNormal" style="border:medium none;margin-bottom:.0001pt;line-height:normal;padding:0;"><span style="color:#0000ff;"> continue</span></p>
<p class="MsoNormal" style="border:medium none;margin-bottom:.0001pt;line-height:normal;padding:0;"><span style="color:#0000ff;"> end</span></p>
<p class="MsoNormal" style="border:medium none;margin-bottom:.0001pt;line-height:normal;padding:0;"><span style="color:#0000ff;"> end</span></p>
<p class="MsoNormal" style="border:medium none;margin-bottom:.0001pt;line-height:normal;padding:0;"><span style="color:#0000ff;">end</span></p>
<p class="MsoNormal" style="border:medium none;margin-bottom:.0001pt;line-height:normal;padding:0;"><span style="color:#0000ff;">%h=[a x' y'];</span></p>
<p class="MsoNormal" style="border:medium none;margin-bottom:.0001pt;line-height:normal;padding:0;"><span style="color:#0000ff;">%save line.dat h -ascii</span></p>
<p class="MsoNormal" style="border:medium none;margin-bottom:.0001pt;line-height:normal;padding:0;"><span style="color:#0000ff;">n=[ref(:,1) ref(:,2) ref(:,3) a x' y'];</span></p>
<p class="MsoNormal" style="border:medium none;margin-bottom:.0001pt;line-height:normal;padding:0;"><span style="color:#0000ff;">save hasil.dat n -ascii</span></p>
<p class="MsoNormal" style="border:medium none;margin-bottom:.0001pt;line-height:normal;padding:0;"><span style="color:#0000ff;"><br />
</span></p>
</div>
<div style="border:1pt solid windowtext;padding:1pt 0 1pt 4pt;">hasil disimpan dalam file &#8220;hasil.dat&#8221;</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/littlescript.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/littlescript.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/littlescript.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/littlescript.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/littlescript.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/littlescript.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/littlescript.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/littlescript.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/littlescript.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/littlescript.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/littlescript.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/littlescript.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/littlescript.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/littlescript.wordpress.com/20/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=littlescript.wordpress.com&amp;blog=9039573&amp;post=20&amp;subd=littlescript&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://littlescript.wordpress.com/2009/08/22/mencari-nilai-koordinat-look-for-coordinate-value/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/44d6d74a7e2116043e72c336158aa6cd?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">agung wahyu saputro</media:title>
		</media:content>
	</item>
	</channel>
</rss>
