<?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/"
	>

<channel>
	<title>RTXI</title>
	<atom:link href="http://www.rtxi.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.rtxi.org</link>
	<description>Real-time eXperiment Interface</description>
	<lastBuildDate>Sun, 18 Dec 2011 23:13:20 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Sweep-based Recording</title>
		<link>http://www.rtxi.org/2011/tutorials/sweep-based-recording/</link>
		<comments>http://www.rtxi.org/2011/tutorials/sweep-based-recording/#comments</comments>
		<pubDate>Tue, 04 Oct 2011 17:49:25 +0000</pubDate>
		<dc:creator>Risa</dc:creator>
				<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.rtxi.org/?p=1316</guid>
		<description><![CDATA[By default, RTXI run continuous protocols, similar to a chart recorder. We are currently working on environments to make it easier to visualize results within RTXI from sweep-based protocols. Meanwhile, you can implement sweep-based protocols in your custom modules by using counters for each cycle, or by keeping track of the time lapsed since you [...]]]></description>
			<content:encoded><![CDATA[<p>By default, RTXI run continuous protocols, similar to a chart recorder. We are currently working on environments to make it easier to visualize results within RTXI from sweep-based protocols. Meanwhile, you can implement sweep-based protocols in your custom modules by using counters for each cycle, or by keeping track of the time lapsed since you unpaused your module. It is also possible to synchronize your module with the Data Recorder such that each sweep is a separate Trial in the HDF5 file. The following two functions are equivalent to manually starting and stopping the Data Recorder using the buttons:</p>
<p><code>DataRecorder::startRecording();<br />
DataRecorder::stopRecording();<br />
</code><br />
Simply call these functions when your criteria are met. In the following example, each trial has a fixed length, triallength, and the current trial number is tracked. systime is the total time elapsed since the module was unpaused. This example also has a boolean flag that checks if the user wants to record data. If recording is on, and the end of a trial has been reached: 1) the Data Recorder stops recording to close the Trial in the HDF5 file, 2) the module increments the trial number to reset the stop criteria, and 3) the Data Recorder starts recording again to create the next Trial in the HDF5 file.</p>
<p><code>if (systime > triallength * (trial + 1))<br />
    {<br />
      &nbsp;&nbsp;if (recordon)<br />
        &nbsp;&nbsp;&nbsp;&nbsp;DataRecorder::stopRecording();<br />
      &nbsp;&nbsp;trial++;<br />
    &nbsp;&nbsp;if (recordon)<br />
   &nbsp;&nbsp;&nbsp;&nbsp;     DataRecorder::startRecording();<br />
    }<br />
</code></p>
<p>Depending on how you write the code, you may need to open the Data Recorder before opening a module that requires the Data Recorder. Not doing so could result in the module failing to load or RTXI crashing.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rtxi.org/2011/tutorials/sweep-based-recording/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New ways to stay in touch!</title>
		<link>http://www.rtxi.org/2011/news/new-ways-to-stay-in-touch/</link>
		<comments>http://www.rtxi.org/2011/news/new-ways-to-stay-in-touch/#comments</comments>
		<pubDate>Thu, 29 Sep 2011 03:33:48 +0000</pubDate>
		<dc:creator>Risa</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.rtxi.org/?p=1307</guid>
		<description><![CDATA[RTXI is moving along quickly and we have a few new ways for you to stay in touch with updates and contact the developers. There are now user forums accessible from the main menu. Please register and post your questions so that everyone can benefit from the discussion and see how others are using RTXI. [...]]]></description>
			<content:encoded><![CDATA[<p>RTXI is moving along quickly and we have a few new ways for you to stay in touch with updates and contact the developers. There are now user forums accessible from the main menu. Please register and post your questions so that everyone can benefit from the discussion and see how others are using RTXI. The contact form has been updated so that you can submit source code in a compressed file format. This is the recommended way for users to submit their modules for release on the website and for submitting code for troubleshooting. We are also experimenting with a Wiki hosted by the Sourceforge site. The Wiki will be the primary source of information for serious developers but will also contain more informal notes about where core RTXI features are headed, modules under development, and general tricks and tips. The website and User Guide will still be the official documentation for getting RTXI up and running as quickly as possible for new users.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rtxi.org/2011/news/new-ways-to-stay-in-touch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Updated MATLAB functions for HDF5</title>
		<link>http://www.rtxi.org/2011/news/updated-matlab-functions-for-hdf5/</link>
		<comments>http://www.rtxi.org/2011/news/updated-matlab-functions-for-hdf5/#comments</comments>
		<pubDate>Thu, 29 Sep 2011 03:19:05 +0000</pubDate>
		<dc:creator>Risa</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.rtxi.org/?p=1303</guid>
		<description><![CDATA[A tutorial on using HDF5 files and a collection of MATLAB functions are available here: http://www.rtxi.org/docs/RTXIh5.zip http://www.rtxi.org/2010/tutorials/rtxi-hdf5-data-files/ It is no longer necessary to use the rtxi_hdf_matlabize utility if you are using these functions. These functions were re-written to use a low-level API to extract the dataset for synchronous channels rather than the &#8220;load&#8221; function to [...]]]></description>
			<content:encoded><![CDATA[<p>A tutorial on using HDF5 files and a collection of MATLAB functions are available here:</p>
<p>http://www.rtxi.org/docs/RTXIh5.zip</p>
<p>http://www.rtxi.org/2010/tutorials/rtxi-hdf5-data-files/</p>
<p>It is no longer necessary to use the rtxi_hdf_matlabize utility if you are using these functions. These functions were re-written to use a low-level API to extract the dataset for synchronous channels rather than the &#8220;load&#8221; function to map the dataset to native MATLAB structures.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rtxi.org/2011/news/updated-matlab-functions-for-hdf5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting Started</title>
		<link>http://www.rtxi.org/2011/tutorials/getting-started/</link>
		<comments>http://www.rtxi.org/2011/tutorials/getting-started/#comments</comments>
		<pubDate>Thu, 18 Aug 2011 16:58:14 +0000</pubDate>
		<dc:creator>Risa</dc:creator>
				<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.rtxi.org/?p=1231</guid>
		<description><![CDATA[This tutorial will contain a series of screencasts showing you how to use the RTXI interface. Screencast #1: 1. Loading user modules 2. Modifying module parameters 3. Using the Oscilloscope 4. Changing the system sampling rate 5. Checking RTXI real-time performance]]></description>
			<content:encoded><![CDATA[<p>This tutorial will contain a series of screencasts showing you how to use the RTXI interface.</p>
<p><a href="http://www.rtxi.org/wp-content/uploads/2011/08/RTXI_Screencast1.swf">Screencast #1</a>:<br />
1. Loading user modules<br />
2. Modifying module parameters<br />
3. Using the Oscilloscope<br />
4. Changing the system sampling rate<br />
5. Checking RTXI real-time performance</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rtxi.org/2011/tutorials/getting-started/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TTL pulses</title>
		<link>http://www.rtxi.org/2011/modules/ttl-pulses/</link>
		<comments>http://www.rtxi.org/2011/modules/ttl-pulses/#comments</comments>
		<pubDate>Sat, 13 Aug 2011 18:37:55 +0000</pubDate>
		<dc:creator>Risa</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Modules]]></category>

		<guid isPermaLink="false">http://www.rtxi.org/?p=1178</guid>
		<description><![CDATA[Requirements:none Limitations: none noted &#160; This module generates a train of TTL pulses (0-5 V square wave). It can be connected to either an analog or digital output channel to trigger external hardware. You should check the voltage range of your DAQ card to make sure that it can handle 0-5 V. Output Channels output(0) [...]]]></description>
			<content:encoded><![CDATA[<div>
<div align="left" style="float:left;width:80%;">
<p>
<strong>Requirements:</strong>none<br />
<strong>Limitations:</strong> none noted</p>
</div>
<div align="right"  style="float:right;width:20%;">
<a href="http://www.rtxi.org/plugins/TTL.tar.gz"><img src="http://www.rtxi.org/wp-content/themes/CompanyStyleBlue/images/dlplugin.png" alt="Download Module" title="Download Module" align="center" /></a></div>
</div>
<p>&nbsp;</p>
<p><a href="http://www.rtxi.org/wp-content/uploads/2011/08/ttl.png"><img src="http://www.rtxi.org/wp-content/uploads/2011/08/ttl.png" alt="TTL Module" title="TTL" width="244" height="167" class="aligncenter size-full wp-image-1180" /></a></p>
<p>This module generates a train of TTL pulses (0-5 V square wave). It can be connected to either an analog or digital output channel to trigger external hardware. You should check the voltage range of your DAQ card to make sure that it can handle 0-5 V. </p>
<h3>Output Channels</h3>
<ol>
<li>output(0) &#8211; &#8220;TTL Signal&#8221; : TTL output signal in volts</li>
</ol>
<h3>Parameters</h3>
<ol>
<li>TTL Duration (s): duration of pulse</li>
<li>TTL Pulses (#): number of TTL pulses within a single train</li>
<li>TTL Freq (Hz): frequency of pulses measured between pulse onsets</li>
<li>TTL Delay (s): time to wait between repeated trials of the same train of pulses</li>
<li>Repeat: number of times to repeat the stimulus</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.rtxi.org/2011/modules/ttl-pulses/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Custom GUIs</title>
		<link>http://www.rtxi.org/2011/tutorials/custom-guis/</link>
		<comments>http://www.rtxi.org/2011/tutorials/custom-guis/#comments</comments>
		<pubDate>Sun, 07 Aug 2011 20:51:33 +0000</pubDate>
		<dc:creator>Risa</dc:creator>
				<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.rtxi.org/?p=1167</guid>
		<description><![CDATA[The code that creates the GUI for a DefaultGUIModel-derived user module is located within the createGUI() member function. This function can be overloaded by a derived class to generate a custom GUI. RTXI uses the Qt platform, which is open-source and has a very well-documented API for creating GUI controls such as checkboxes and push [...]]]></description>
			<content:encoded><![CDATA[<p>The code that creates the GUI for a DefaultGUIModel-derived user module is located within the createGUI() member function. This function can be overloaded by a derived class to generate a custom GUI. RTXI uses the Qt platform, which is open-source and has a very <a href="http://doc.trolltech.com/3.3/mainclasses.html">well-documented API</a> for creating GUI controls such as checkboxes and push buttons (like the PAUSE button). Qt also uses a <a href="http://doc.trolltech.com/3.3/signalsandslots.html">signal-and-slots</a> architecture in which interactions with these GUI elements, such as pushing a button, emits a signal that can then be connected to a function. Such a function is declared as a special &#8220;slot&#8221; in the header file but is implemented as a standard C++ function in the implementation file. Whenever the corresponding event occurs, the slot function is executed. The signal-and-slots architecture is generic and user-defined criteria not associated with the GUI can be used to trigger a signal. Similarly, slot functions can also contain generic code. It is also possible to connect a single signal to multiple slots and even chain signals together, when the order in which certain functions are executed is important. </p>
<p>The signal-and-slots architecture is made possible by Qt&#8217;s Meta Object System, which uses a C++ preprocessor to generate additional *.cpp implementation files containing the meta object code. The header file must contain the Q_OBJECT macro inside the private section of the class declaration. The additional source files (moc_*.cpp) must also be listed in the Makefile in order to link it with the class implementation.</p>
<p>Most user modules will have a set of parameters for which the existing DefaultGUIModel-generated GUI will still be very useful, since it is integrated with code that implements module inputs and outputs, etc. A custom GUI will likely consist of additional GUI elements around the default GUI. A template user module is provided in /rtxi/doc/my_plugin_gui that shows you how to add these additional elements.</p>
<h3>Overview of <a href="http://doc.trolltech.com/3.3/layout.html">Qt Layouts</a></h3>
<p>Qt GUI elements are called <b>widgets</b> and they are assigned locations in a <b>layout</b>. A QLayout handles positioning of child widgets, their sizing, and automatic updating of the widgets when contents change. QLayouts may have horizontal, vertical, or grid organization. Child widgets are laid out in the order in which they are constructed. Layouts may also contain other layouts. In the template class provided in RTXI, sample code is shown for embedding two vertical layouts within a horizontal layout. This results in two side-by-side panels, each of which contains widgets that are organized vertically. The relative position of layouts within other layouts is defined by the order in which the child layouts are added to the parent layout.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rtxi.org/2011/tutorials/custom-guis/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GenNet: A Platform for Hybrid Network Experiments</title>
		<link>http://www.rtxi.org/2011/publications/gennet-a-platform-for-hybrid-network-experiments-2/</link>
		<comments>http://www.rtxi.org/2011/publications/gennet-a-platform-for-hybrid-network-experiments-2/#comments</comments>
		<pubDate>Wed, 27 Jul 2011 00:50:45 +0000</pubDate>
		<dc:creator>Risa</dc:creator>
				<category><![CDATA[Publications]]></category>

		<guid isPermaLink="false">http://www.rtxi.org/?p=1240</guid>
		<description><![CDATA[Kispersky, Tilman J, Economo, Michael N, Randeria, Pratik, White, John A. GenNet: A Platform for Hybrid Network Experiments. Front Neuroinform (2011) vol. 5 pp. 11. We describe General Network (GenNet), a software plugin for the real time experimental interface (RTXI) dynamic clamp system that allows for straightforward and flexible implementation of hybrid network experiments. This [...]]]></description>
			<content:encoded><![CDATA[<p>Kispersky, Tilman J, Economo, Michael N, Randeria, Pratik, White, John A. GenNet: A Platform for Hybrid Network Experiments. Front Neuroinform (2011) vol. 5 pp. 11.</p>
<p><a href="http://dx.doi.org/10.3389/fninf.2011.00011" target="blank"><img src="http://www.rtxi.org/wp-content/uploads/2010/02/fulltext.png" alt="Full Text and Video" title="Full Text and Video" width="100" height="36" /></a></p>
<p>We describe General Network (GenNet), a software plugin for the real time experimental interface (RTXI) dynamic clamp system that allows for straightforward and flexible implementation of hybrid network experiments. This extension to RTXI allows for hybrid networks that contain an arbitrary number of simulated and real neurons, significantly improving upon previous solutions that were limited, particularly by the number of cells supported. The benefits of this system include the ability to rapidly and easily set up and perform scalable experiments with hybrid networks and the ability to scan through ranges of parameters. We present instructions for installing, running and using GenNet for hybrid network experiments and provide several example uses of the system.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rtxi.org/2011/publications/gennet-a-platform-for-hybrid-network-experiments-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RTXI v1.3 available</title>
		<link>http://www.rtxi.org/2011/news/rtxi-v1-3-available/</link>
		<comments>http://www.rtxi.org/2011/news/rtxi-v1-3-available/#comments</comments>
		<pubDate>Tue, 19 Jul 2011 17:44:08 +0000</pubDate>
		<dc:creator>Risa</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.rtxi.org/?p=1100</guid>
		<description><![CDATA[RTXI v1.3 includes improvements to the GUI, implementation of basic user preferences, and some small bug fixes. The major change is a rewriting of the DefaultGUIModel class that is the basis of custom user modules. This change allows you to write modules with custom GUI elements, such as additional buttons, checkboxes, or menus, that are [...]]]></description>
			<content:encoded><![CDATA[<p>RTXI v1.3 includes improvements to the GUI, implementation of basic user preferences, and some small bug fixes. The major change is a rewriting of the DefaultGUIModel class that is the basis of custom user modules. This change allows you to write modules with custom GUI elements, such as additional buttons, checkboxes, or menus, that are still compatible with features that work only with DefaultGUIModel, such as the <a href="http://www.rtxi.org/2010/modules/synchronize-plug-ins/">synch</a> module. <strong>RTXI v1.3 requires a single additional line of code in the constructor of user modules that are derived from DefaultGUIModel</strong>:</p>
<p><code>Neuron::Neuron(void) :<br />
DefaultGUIModel("Neuron", ::vars, ::num_vars) {<br />
&nbsp;&nbsp;createLayout(vars,num_vars); // this line should be commented out for RTXI v1.2<br />
&nbsp;&nbsp;V = V0;<br />
&nbsp;&nbsp;m = m_inf(V0);<br />
&nbsp;&nbsp;h = h_inf(V0);<br />
&nbsp;&nbsp;n = n_inf(V0);<br />
&nbsp;&nbsp;period = RT::System::getInstance()->getPeriod() * 1e-6;<br />
&nbsp;&nbsp;update(INIT);<br />
&nbsp;&nbsp;refresh();<br />
}<br />
</code></p>
<p>Modules published on the website will be updated to be compatible with RTXI v1.3. Examples of how to write user modules based on DefaultGUIModel with or without a custom GUI are included in RTXI. You can download the source code <a href="http://sourceforge.net/projects/rtxi/files/RTXI/1.3/rtxi-1.3.tar.gz/download" title="RTXI v1.3 source code">here</a>. </p>
<p>You can also retrieve RTXI v1.3 from the Sourceforge repository using the following command in your terminal:</p>
<p><code>$ svn co https://rtxi.svn.sourceforge.net/svnroot/rtxi/branches/1.3 rtxi</code></p>
<p>To compile the new version of RTXI:</p>
<p><code>$ sudo sh autogen.sh<br />
$ sudo ./configure<br />
$ sudo make<br />
$ sudo make install<br />
$ sudo cp rtxi.conf /etc<br />
</code></p>
<p>RTXI v1.3 is also already installed on the new <a href="http://www.rtxi.org/iso/ubuntu-10.04-desktop-i386-rtxi-0.iso">Ubuntu 10.04 based Live CD</a>. The Ubuntu 10.04 Live CD is currently only available as a 32-bit option. New <a href="http://www.rtxi.org/documentation/">reference documentation</a> for RTXI is also now available on the website. This includes information on RTXI classes and members as well as a new User&#8217;s Guide. All documentation is based on RTXI v1.3.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rtxi.org/2011/news/rtxi-v1-3-available/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GenNet: A platform for Hybrid Network Experiments</title>
		<link>http://www.rtxi.org/2011/modules/gennet-a-platform-for-hybrid-network-experiments/</link>
		<comments>http://www.rtxi.org/2011/modules/gennet-a-platform-for-hybrid-network-experiments/#comments</comments>
		<pubDate>Mon, 13 Jun 2011 20:34:22 +0000</pubDate>
		<dc:creator>tilman</dc:creator>
				<category><![CDATA[Modules]]></category>
		<category><![CDATA[Neural Electrophysiology]]></category>

		<guid isPermaLink="false">http://www.rtxi.org/?p=1073</guid>
		<description><![CDATA[Requirements: All required components included. Limitations: None noted. Authors: Tilman Kispersky*, Michael Economo*, Pratik Randeria, John A. White &#160; &#160; This plugin implements a framework for Hybrid Network experiments. Hybrid networks entail the coupling of biological circuit elements with simulated ones. Hybrid Network experiments have been historically hindered by the difficulty of implementing the network. [...]]]></description>
			<content:encoded><![CDATA[<div>
<div align="left" style="float:left;width:80%;">
<p>
            <strong>Requirements:</strong><br />
            All required components included.<br />
            <strong>Limitations:</strong><br />
            None noted.<br />
            <strong>Authors:</strong><br />
            Tilman Kispersky*, Michael Economo*, Pratik Randeria, John A. White
            </p>
</p></div>
<div align="right" style="float:right;width:20%;">
        <a href="http://www.rtxi.org/plugins/GenNet.zip"><br />
            <img src="http://www.rtxi.org/wp-content/themes/CompanyStyleBlue/images/dlplugin.png" alt="Download Module" title="Download Module" align="center" /><br />
        </a>
    </div>
</div>
<p>&nbsp;</p>
<p>&nbsp;</p>
<div>
<p>
    <a href="http://www.rtxi.org/wp-content/uploads/2011/06/GenNetFig02.png"><br />
        <img src="http://www.rtxi.org/wp-content/uploads/2011/06/GenNetFig02.png" alt="GenNet Diagram" title="GenNet" class="aligncenter size-full wp-image-828" /><br />
    </a>
</p>
<p>
This plugin implements a framework for Hybrid Network experiments.  Hybrid networks entail the coupling of biological circuit elements with simulated ones. Hybrid Network experiments have been historically hindered by the difficulty of implementing the network. This software package aims to address this problem by providing tools that allow for the automatic setup of the simulated portion of the network and by automating integration of biological neurons with simulated neurons.
</p>
</p>
<p>The downloaded code contains 3 components organized into 3 directories:<br />
    <code><br />
        - GenNet<br />
        |- Hybrid Network<br />
        |- RTSim<br />
        |- StandAloneSim<br />
        |- MatlabScripts<br />
    </code><br />
Each of these three directories contains code to run a particular realization of the software.  </p>
<p>&#8216;Hybrid Network&#8217; provides an RTXI interface to our simulator and performs the classical function of a hybrid network by coupling one or more biological neurons with one or more simulated neurons.</p>
<p>&#8216;RTSim&#8217; provides a stripped down version of a Hybrid Network in which there is only one simulated neuron. Running the software in this mode is useful for performing an interactive exploration of the behavior of one model neuron in real time when used in conjunction with other RTXI plugins such as those used for standard electropyhisiology experiments.  For example, the response of a model neuron can be assessed in response to step-current injection using the <a href="http://www.rtxi.org/2010/modules/istep/">IStep</a> plugin. </p>
<p>Finally, because the core of GenNet implements a network simulation framework, the software can be used as a stand-alone network simulator that does not depend on RTXI.  Compiling the code in the &#8216;StandAloneSim&#8217; directory will accomplish this task.</p>
<p>The &#8216;MatlabScripts&#8217; directory contains example code to demonstrate how to read output data, automatically generate Netfiles and a simple GUI program to automate data plotting.
</p>
<p>
Detailed instructions for installing, running and using GenNet can be found in our upcoming paper describing the design and implementation of the software as well as providing several practical examples of use cases.
</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.rtxi.org/2011/modules/gennet-a-platform-for-hybrid-network-experiments/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Naming conventions for DefaultGUIModel</title>
		<link>http://www.rtxi.org/2011/tutorials/naming-conventions-for-defaultguimodel/</link>
		<comments>http://www.rtxi.org/2011/tutorials/naming-conventions-for-defaultguimodel/#comments</comments>
		<pubDate>Mon, 13 Jun 2011 19:19:36 +0000</pubDate>
		<dc:creator>Risa</dc:creator>
				<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.rtxi.org/?p=1071</guid>
		<description><![CDATA[The Data Recorder automatically extracts Parameters and Comments from modules that are based on the DefaultGUIModel class. If the name you have defined for a parameter or comment contains an invalid character, it will not appear in your HDF5 file. Currently, it is known that you cannot use a slash (&#8216;/&#8217;) character in the name [...]]]></description>
			<content:encoded><![CDATA[<p>The Data Recorder automatically extracts Parameters and Comments from modules that are based on the DefaultGUIModel class. If the name you have defined for a parameter or comment contains an invalid character, it will not appear in your HDF5 file. Currently, it is known that you cannot use a slash (&#8216;/&#8217;) character in the name since HDF5 uses a folder/directory type notation for its internal data structure. The following are symbols that you may use:</p>
<p>left and right parantheses: &#8220;(&#8221; and &#8220;)&#8221;<br />
pound sign: &#8220;#&#8221;<br />
percent sign: &#8220;%&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rtxi.org/2011/tutorials/naming-conventions-for-defaultguimodel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

