<?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>The ILNumerics Blog &#187; .NET</title>
	<atom:link href="https://ilnumerics.net/blog/tag/net/feed/" rel="self" type="application/rss+xml" />
	<link>https://ilnumerics.net/blog</link>
	<description>The Productivity Machine  &#124;  A fresh attempt for scientific computing  &#124;  http://ilnumerics.net</description>
	<lastBuildDate>Thu, 05 Dec 2024 09:09:24 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.1.41</generator>
	<item>
		<title>ILNumerics for Science &#8211; How did you do the Visualization?</title>
		<link>https://ilnumerics.net/blog/ilnumerics-for-scientists-how-did-you-do-the-visualization/</link>
		<comments>https://ilnumerics.net/blog/ilnumerics-for-scientists-how-did-you-do-the-visualization/#comments</comments>
		<pubDate>Mon, 02 Feb 2015 16:35:03 +0000</pubDate>
		<dc:creator><![CDATA[Jonas]]></dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[ILNumerics]]></category>
		<category><![CDATA[Visualization]]></category>
		<category><![CDATA[3d visualization]]></category>
		<category><![CDATA[plots]]></category>
		<category><![CDATA[Visual Studio]]></category>
		<category><![CDATA[visualization]]></category>

		<guid isPermaLink="false">http://ilnumerics.net/blog/?p=772</guid>
		<description><![CDATA[<p>In the third part of our series we focus on the visualization of scientific data. You learn how to easily display your data with ILNumerics and the ILPanels. Reactions I got a lot of emails after the last two posts (first, second) of people that liked the post and are interested in learning more. Most &#8230; <a href="https://ilnumerics.net/blog/ilnumerics-for-scientists-how-did-you-do-the-visualization/" class="more-link">Continue reading <span class="screen-reader-text">ILNumerics for Science &#8211; How did you do the Visualization?</span> <span class="meta-nav">&#8594;</span></a></p>
<p>The post <a rel="nofollow" href="https://ilnumerics.net/blog/ilnumerics-for-scientists-how-did-you-do-the-visualization/">ILNumerics for Science &#8211; How did you do the Visualization?</a> appeared first on <a rel="nofollow" href="https://ilnumerics.net/blog">The ILNumerics Blog</a>.</p>
]]></description>
				<content:encoded><![CDATA[<p>In the third part of our series we focus on the visualization of scientific data. You learn how to easily display your data with ILNumerics and the ILPanels.</p>
<p><span id="more-772"></span></p>
<h3>Reactions</h3>
<p style="text-align: justify;">I got a lot of emails after the last two posts (<a title="ILNumerics for Scientists – An easy start" href="http://ilnumerics.net/blog/ilnumerics-for-scientists-an-easy-start/">first</a>, <a title="ILNumerics for Scientists – Going 3D" href="http://ilnumerics.net/blog/ilnumerics-for-scientists/">second</a>) of people that liked the post and are interested in learning more. Most emails asked me to go into more details about how I did all that. Obviously, not too many people are interested in implementing the particle in a box, so the “what” is not as interesting as the “how”.</p>
<p style="text-align: justify;">In this post I want to focus on the visualization part of the previous two examples and how <a href="http://ilnumerics.net">ILNumerics </a>helped me. As many of our users are scientists and engineers they are typically experts in the computation part but appreciate a little help in the visualization. If you&#8217;re interested in the computation part, please be patient until the next post.</p>
<h3>The Form</h3>
<p style="text-align: justify;">I started by creating a new project in Visual Studio and chose Windows Forms Application. This gives me a vanilla Form1.cs. That’s the basis of all the visualization and helps me – being a scientist and not a coder – a lot, because I couldn’t do all that without the help of Visual Studio in the background.</p>
<p style="text-align: justify;">On the left-hand side in the Toolbox panel I picked TableLayoutPanel under Containers and dragged it into Form1.cs.</p>
<p style="text-align: justify;"><a href="http://ilnumerics.net/blog/wp-content/uploads/2015/02/firstimage.png"><img class="alignnone size-full wp-image-775" src="http://ilnumerics.net/blog/wp-content/uploads/2015/02/firstimage.png" alt="firstimage" width="421" height="379" /></a></p>
<p style="text-align: justify;">I adjusted the table to have three rows and a single column. In the Properties section under Dock I chose Fill so that everything scales when scaling the window later on.</p>
<p style="text-align: justify;"><a href="http://ilnumerics.net/blog/wp-content/uploads/2015/02/secondimage.png"><img class="alignnone size-full wp-image-777" src="http://ilnumerics.net/blog/wp-content/uploads/2015/02/secondimage.png" alt="secondimage" width="404" height="475" /></a></p>
<p style="text-align: justify;">A right click on Table -&gt; Edit Rows and Columns allows you to change the behavior of the three rows. I wanted the first and last row not to scale when changing the window. This is what I chose here.</p>
<p style="text-align: justify;"><a href="http://ilnumerics.net/blog/wp-content/uploads/2015/02/thirdimage.png"><img class="alignnone size-full wp-image-779" src="http://ilnumerics.net/blog/wp-content/uploads/2015/02/thirdimage.png" alt="thirdimage" width="730" height="481" /></a></p>
<p style="text-align: justify;">In the middle row we would like to see two ILNumerics panels. So I dragged another TableLayoutPanel in the middle row and chose two columns and one row. Choosing Dock = Fill for the new table and dragging two ILPanels into the respective columns (again with Dock = Fill) gives us the layout for our final Windows Form.</p>
<p style="text-align: justify;"><a href="http://ilnumerics.net/blog/wp-content/uploads/2015/02/fourthimage.png"><img class="alignnone size-full wp-image-776" src="http://ilnumerics.net/blog/wp-content/uploads/2015/02/fourthimage.png" alt="fourthimage" width="685" height="623" /></a></p>
<p style="text-align: justify;">In the header (the first row) I inserted a FlowLayoutPanel that makes sure that everything in there will be displayed rather neatly. Then I added the labels and the NumericUpDown according to my needs. Please make sure that you go through the properties of every item and choose the values according to your needs. In my case, for instance, the minimum value for the state is 1, since 0 would mean that there is no particle present. Here is the final picture of the form for the 1D particle in a box:</p>
<p><a href="http://ilnumerics.net/blog/wp-content/uploads/2015/02/fifthimage.png"><img class="alignnone size-full wp-image-774" src="http://ilnumerics.net/blog/wp-content/uploads/2015/02/fifthimage.png" alt="fifthimage" width="935" height="660" /></a></p>
<h3>The Wiring</h3>
<p style="text-align: justify;">After having the layout ready the interactivity needs to be implemented. In this case there is only one point of user interaction. The user can choose which eigenvector to display. Double-clicking on the NumericUpDown control opens a new tab with a predefined class and a function handling the event when a user changes the value of the eigenvector.</p>
<p style="text-align: justify;"><a href="http://ilnumerics.net/blog/wp-content/uploads/2015/02/sixthimage.png"><img class="alignnone size-full wp-image-778" src="http://ilnumerics.net/blog/wp-content/uploads/2015/02/sixthimage.png" alt="sixthimage" width="589" height="477" /></a></p>
<p style="text-align: justify;">All that’s needed now is to implement the function numericUpDown1_ValueChanged. This is particularly simple in our case. We just call the Update function (still to be implemented) with the new value for the eigenvector.</p>
<p style="text-align: justify;">In the case of the 2D particle in a box we have, in fact, four events that should trigger the Update function. This is easily done by introducing these lines of code in the public function Form1():</p>
<pre class="brush: csharp; title: ; notranslate">
     numericUpDown1.ValueChanged += Update;
     numericUpDown2.ValueChanged += Update;
     numericUpDown3.ValueChanged += Update;
     textBox1.TextChanged += Update;
</pre>
<h3 style="text-align: left;">The Implementation</h3>
<p style="text-align: justify;">Now, all we need to do is to implement the Update function and the initialization. The initialization makes sure that all the plotting objects are created when starting the program.</p>
<pre class="brush: csharp; title: ; notranslate">
     public Form1()
     {
        InitializeComponent();

        var EVID = 1;
        var MeshSize = 1000;

        InitializePanel1(EVID, MeshSize);
        InitializePanel2(EVID, MeshSize);

        label2.Text = string.Format(&quot;In appropriate units the energy is {0}&quot;, EVID * EVID);
     }

     private void InitializePanel1(int EVID, int MeshSize)
     {
        ILArray&lt;float&gt; XY = ILMath.tosingle(Computing_Module1.CalcWF(EVID, MeshSize));
        var color = Color.Black;
        ilPanel1.Scene =
          new ILScene {
            new ILPlotCube {
              new ILLinePlot (XY, lineColor : color)
            }
          };
     }
</pre>
<p style="text-align: justify;">The call to Computing_Module1.CalcWF will be explained in the next post. The piece of code above initializes the wave function plot and the density plot in their respective panels with the first eigenvector and a mesh size of 1000.</p>
<p>Finally, the Update function is implemented.</p>
<pre class="brush: csharp; title: ; notranslate">
     private void Update(int EVID, int MeshSize = 1000)
     {
       ILArray&lt;float&gt; XY = ILMath.tosingle(Computing_Module1.CalcWF(EVID, MeshSize));
       ilPanel1.Scene.First&lt;ILLinePlot&gt;().Update(XY);
       ilPanel1.Scene.First&lt;ILPlotCube&gt;().Reset();
       ilPanel1.Refresh();

       ILArray&lt;float&gt; XD = ILMath.tosingle(Computing_Module1.CalcDensity(EVID, MeshSize));
       ilPanel2.Scene.First&lt;ILLinePlot&gt;().Update(XD);
       ilPanel2.Scene.First&lt;ILPlotCube&gt;().Reset();
       ilPanel2.Refresh();
       label2.Text = string.Format(&quot;In appropriate units the energy is {0}&quot;, EVID * EVID);
     }
</pre>
<p style="text-align: justify;">Again, the CalcWF and CalcDensity calls will be explained in the next post. The Reset() function rescales the axes and the Refresh() function finally puts the new plot on screen.</p>
<p>The post <a rel="nofollow" href="https://ilnumerics.net/blog/ilnumerics-for-scientists-how-did-you-do-the-visualization/">ILNumerics for Science &#8211; How did you do the Visualization?</a> appeared first on <a rel="nofollow" href="https://ilnumerics.net/blog">The ILNumerics Blog</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://ilnumerics.net/blog/ilnumerics-for-scientists-how-did-you-do-the-visualization/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Troubleshooting: Adding ILNumerics 3D Controls to the VS Toolbox</title>
		<link>https://ilnumerics.net/blog/troubleshooting-adding-controls-to-the-vs-toolbox/</link>
		<comments>https://ilnumerics.net/blog/troubleshooting-adding-controls-to-the-vs-toolbox/#comments</comments>
		<pubDate>Thu, 05 Dec 2013 18:30:27 +0000</pubDate>
		<dc:creator><![CDATA[Jonas]]></dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[ILNumerics]]></category>
		<category><![CDATA[Math Library]]></category>
		<category><![CDATA[Toolbox]]></category>
		<category><![CDATA[Visual Studio]]></category>

		<guid isPermaLink="false">http://ilnumerics.net/blog/?p=482</guid>
		<description><![CDATA[<p>Adding ILNumerics visualizations to Visual Studio based projects has become a quite convenient task: It&#8217;s easy to use the ILNumerics math library for own projects in .NET. However, from time to time users have problems adding the ILNumerics controls to their Visual Studio Toolbox window. Update: Since ILNumerics Ultimate VS version 4 this issue has &#8230; <a href="https://ilnumerics.net/blog/troubleshooting-adding-controls-to-the-vs-toolbox/" class="more-link">Continue reading <span class="screen-reader-text">Troubleshooting: Adding ILNumerics 3D Controls to the VS Toolbox</span> <span class="meta-nav">&#8594;</span></a></p>
<p>The post <a rel="nofollow" href="https://ilnumerics.net/blog/troubleshooting-adding-controls-to-the-vs-toolbox/">Troubleshooting: Adding ILNumerics 3D Controls to the VS Toolbox</a> appeared first on <a rel="nofollow" href="https://ilnumerics.net/blog">The ILNumerics Blog</a>.</p>
]]></description>
				<content:encoded><![CDATA[<p><strong>Adding ILNumerics visualizations to Visual Studio based projects has become a quite convenient task: It&#8217;s easy to use the ILNumerics math library for own projects in .NET. However, from time to time users have problems adding the ILNumerics controls to their Visual Studio Toolbox window.</strong></p>
<p><em>Update: Since ILNumerics Ultimate VS version 4 this issue has been solved once for all. Simply install the MSI installer and find the ILNumerics ILPanel in the toolbox for all applicable situations.</em></p>
<p>That&#8217;s what a <a href="http://stackoverflow.com/questions/18239021/ilnumerics-how-to-get-ilnumerics-controls-in-windows-form-tools" target="_blank">post on Stack Overflow</a> from earlier this year was about: A developer who wanted to use our<a href="http://ilnumerics.net"> C# math library</a> for 3d visualizations and simulations wasn&#8217;t able to access the ILNumerics controls. &#8220;How can I locate it?&#8221;, he was wondering. &#8220;Do I have to make some changes to my VS?&#8221;</p>
<h2>Adding ILNumerics Controls to the Visual Studio Toolbox manually</h2>
<p>If the ILNumerics Ultimate VS math library is installed on a system, normally the ILNumerics controls are automatically listed in the Visual Studio toolbox on all supported versions of Visual Studio. However, if that&#8217;s not the case there&#8217;s a way to a add them manually: After clicking right onto the toolbox, you can select &#8220;Choose Item&#8221;. The dialog allows you to select the assambly to load the controls from – that&#8217;s it! You will find the ILNumerics.dll in the installation folder on your system. By default this directory is located at:  &#8220;C:\Program Files (x86)\ILNumerics\ILNumerics Ultimate VS\bin\ILNumerics.dll&#8221;.</p>
<p>However, if that doesn&#8217;t work straightaway, it often helps to clear the toolbox from any copies of custom controls before – simply right-click it and choose &#8220;Reset Toolbox&#8221;.</p>
<h2>Need help? ILNumerics Documentation and Support</h2>
<p><strong>You want to know more about our math library and its installation? Check out our <a href="http://ilnumerics.net/docs.html" target="_blank">documentation</a> and the <a title="Getting Started" href="http://ilnumerics.net/Getting-Started-with-ILNumerics.html" target="_blank">Quick Start Guide</a>! If you have any technical questions, have a look at our <a href="http://ilnumerics.net/support.html" target="_blank">Support Section</a>.</strong></p>
<p>The post <a rel="nofollow" href="https://ilnumerics.net/blog/troubleshooting-adding-controls-to-the-vs-toolbox/">Troubleshooting: Adding ILNumerics 3D Controls to the VS Toolbox</a> appeared first on <a rel="nofollow" href="https://ilnumerics.net/blog">The ILNumerics Blog</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://ilnumerics.net/blog/troubleshooting-adding-controls-to-the-vs-toolbox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>C# for 3D visualizations and Plotting in .NET</title>
		<link>https://ilnumerics.net/blog/3d-visualization-and-scientific-plotting-for-net/</link>
		<comments>https://ilnumerics.net/blog/3d-visualization-and-scientific-plotting-for-net/#comments</comments>
		<pubDate>Tue, 08 Oct 2013 13:58:27 +0000</pubDate>
		<dc:creator><![CDATA[Jonas]]></dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[ILNumerics]]></category>
		<category><![CDATA[Scientific Computing]]></category>
		<category><![CDATA[Visualization]]></category>
		<category><![CDATA[2d]]></category>
		<category><![CDATA[3d]]></category>
		<category><![CDATA[Math Library]]></category>
		<category><![CDATA[scientific computing]]></category>
		<category><![CDATA[visualization]]></category>

		<guid isPermaLink="false">http://ilnumerics.net/blog/?p=467</guid>
		<description><![CDATA[<p>2D and 3D Visualizations are an important feature for a wide range of domains: both software developers and scientists often need convenient visualization facilities to create interactive scenes and to make data visible. The ILNumerics math library brings powerful visualization features to C# and .NET: ILView, the ILNumerics Scene Graph API and its plotting engine. &#8230; <a href="https://ilnumerics.net/blog/3d-visualization-and-scientific-plotting-for-net/" class="more-link">Continue reading <span class="screen-reader-text">C# for 3D visualizations and Plotting in .NET</span> <span class="meta-nav">&#8594;</span></a></p>
<p>The post <a rel="nofollow" href="https://ilnumerics.net/blog/3d-visualization-and-scientific-plotting-for-net/">C# for 3D visualizations and Plotting in .NET</a> appeared first on <a rel="nofollow" href="https://ilnumerics.net/blog">The ILNumerics Blog</a>.</p>
]]></description>
				<content:encoded><![CDATA[<p><strong>2D and 3D Visualizations are an important feature for a wide range of domains: both software developers and scientists often need convenient visualization facilities to create interactive scenes and to make data visible. The ILNumerics math library brings powerful visualization features to C# and .NET: ILView, the ILNumerics Scene Graph API and its plotting engine. We&#8217;d like to give an overview over our latest achievements.</strong></p>
<h2>ILView: a simple way to create interactive 3d visualizations</h2>
<p>We have created ILView as an extension to our interactive web component: It allows you to simply try out ILNumerics&#8217; 2d and 3d visualization features by chosing the output format .exe in our visualization examples. But that&#8217;s not all: ILView is also a general REPL for the evaluation of computational expressions using C# language. ILView is Open Source – find it on <a href="https://github.com/ilnumerics/ILView" target="_blank">GitHub</a>!</p>
<figure id="attachment_477" style="width: 500px;" class="wp-caption aligncenter"><a href="http://ilnumerics.net/blog/wp-content/uploads/2013/10/ilview-3d-visualization.png"><img class=" wp-image-477   " title="3D Visualization with ILView" src="http://ilnumerics.net/blog/wp-content/uploads/2013/10/ilview-3d-visualization-1024x551.png" alt="Screenshot of ILView" width="500" /></a><figcaption class="wp-caption-text">Using ILView for interactive 3D Visualization</figcaption></figure>
<h2>ILNumerics Scene Graph: realize complex visualizations in .NET</h2>
<p>The ILNumeric&#8217;s scene graph is the core of ILNumerics&#8217; visualization engine. No matter if you want to create complex interactive <a href="http://ilnumerics.net/Visualization-API.html">3D visualizations</a>, or if you aim at enhancing and re-configuring existing scenes in .NET: The ILNumerics scene graph offers a convenient way to realize stunning graphics with C#. It uses OpenGL, GDI, and it&#8217;s possible to export scenes into vector and pixel graphics.</p>
<figure id="attachment_478" style="width: 400px;" class="wp-caption aligncenter"><a href="http://ilnumerics.net/blog/wp-content/uploads/2013/10/3d-visualization-scene-graph.png"><img class=" wp-image-478  " title="Interactive Visualization, created with ILNumerics Scene Graph" src="http://ilnumerics.net/blog/wp-content/uploads/2013/10/3d-visualization-scene-graph-300x225.png" alt="Screenshot of an interactive 3D scene" width="400" /></a><figcaption class="wp-caption-text">Using C# for 3D visualizations: the ILNumerics Scene Graph</figcaption></figure>
<h2>Scientific Plotting: visualize your data using C#</h2>
<p>With ILNumerics’ visualization capabilities, C# becomes the language of choice for scientists, engineers and developers who need to visualize data: Our <a href="http://ilnumerics.net/plotting-api.html">plotting API</a> and different kinds of plotting types (contour plots, surface plots etc.) make easy work of creating beautiful scientific visualizations.</p>
<figure id="attachment_479" style="width: 400px;" class="wp-caption aligncenter"><a href="http://ilnumerics.net/blog/wp-content/uploads/2013/10/scientific-plotting-net.png"><img class=" wp-image-479 " title="3D Surface Plot, created with ILNumerics" src="http://ilnumerics.net/blog/wp-content/uploads/2013/10/scientific-plotting-net.png" alt="Screenshot of a Surface Plot in ILNumerics" width="400" /></a><figcaption class="wp-caption-text">Scientific Plotting in .NET: A Surface Plot created with ILNumerics</figcaption></figure>
<p>The post <a rel="nofollow" href="https://ilnumerics.net/blog/3d-visualization-and-scientific-plotting-for-net/">C# for 3D visualizations and Plotting in .NET</a> appeared first on <a rel="nofollow" href="https://ilnumerics.net/blog">The ILNumerics Blog</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://ilnumerics.net/blog/3d-visualization-and-scientific-plotting-for-net/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Are you afraid of software developers?</title>
		<link>https://ilnumerics.net/blog/are-you-afraid-of-software-developers/</link>
		<comments>https://ilnumerics.net/blog/are-you-afraid-of-software-developers/#comments</comments>
		<pubDate>Wed, 11 Sep 2013 07:27:25 +0000</pubDate>
		<dc:creator><![CDATA[Jonas]]></dc:creator>
				<category><![CDATA[Interesting/ useless]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[berlin]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[managed frameworks]]></category>
		<category><![CDATA[software development]]></category>
		<category><![CDATA[start ups]]></category>

		<guid isPermaLink="false">http://ilnumerics.net/blog/?p=441</guid>
		<description><![CDATA[<p>In the 1980s and 1990s software developers had to face a bunch of bad prejudices: They were known to be sociophobic nerds, neglecting their real lifes in favor of hanging in front of the computer for writing code, discussing in hacking newsgroups and eating pizza. Even though we&#8217;re still not living in a society of &#8230; <a href="https://ilnumerics.net/blog/are-you-afraid-of-software-developers/" class="more-link">Continue reading <span class="screen-reader-text">Are you afraid of software developers?</span> <span class="meta-nav">&#8594;</span></a></p>
<p>The post <a rel="nofollow" href="https://ilnumerics.net/blog/are-you-afraid-of-software-developers/">Are you afraid of software developers?</a> appeared first on <a rel="nofollow" href="https://ilnumerics.net/blog">The ILNumerics Blog</a>.</p>
]]></description>
				<content:encoded><![CDATA[<p>In the 1980s and 1990s software developers had to face a bunch of bad prejudices: They were known to be sociophobic nerds, neglecting their real lifes in favor of hanging in front of the computer for writing code, discussing in hacking newsgroups and eating pizza.</p>
<p>Even though we&#8217;re still not living in a society of hackers, geekism has become mainstream. Not only the fact that most people spend a lot of time with their smartphones and computers: nerd culture is more popular than ever. Some weeks ago Luke Maciak wrote <a href="http://www.terminally-incoherent.com/blog/2013/08/05/nerd-portrayal-on-tv/" target="_blank">a nice article on that topic</a>.</p>
<p>The establishment towards nerdism changed, and so did the general attitude towards software developers. In a way, programmers have become role models for the 21st century – not at least because they are an important factor regarding economic growth in the digital age.</p>
<p>However, having visited some events for start ups in Berlin has made us come across a new kind of prejudices towards developers. Most start ups in Berlin are more or less in the tech business: They create games, offer online services or develop facebook apps. Many of them have no CTOs in their teams, though. That&#8217;s why they employ freelancer developers.</p>
<p>Working together with software developers on this early stage of business is challanging for start ups. They often don&#8217;t have much money to spend: that&#8217;s why the wages developers ask for seem to be too high. Start ups want a strong team spirit: that&#8217;s why they don&#8217;t like developers to work from another place than their office.</p>
<p>But the most important problem is: As most founders aren&#8217;t developers theirselves, they don&#8217;t understand what their expensive freelancer is actually doing when he spends his days coding at home. For theis reason, young CEOs often become nervous: As their business depends on software, they feel like being on their developer&#8217;s mercy because he seems to be the only one who is actually able to understand his code.</p>
<p>In most cases we can calm down our fellows: Developers are used to get paid well and work when and where they want to. There&#8217;s also no reason to be afraid that no other developer would find his way into your software&#8217;s code: Modern languages and frameworks like .NET, Java or Ruby make most applications clean and well organized. So even in case you really have to split up with your developer, it won&#8217;t be that hard to find a new one who can continue his or her antecessor&#8217;s work.</p>
<p>In other words: In most cases there&#8217;s no need to be afraid of software developers. It&#8217;s pretty convenient to monitor enterprise software development these days.</p>
<p>However, the following question shows that this kind of convenience hasn&#8217;t arrived everywhere yet: &#8220;Why does scientific computing today still use only technology of the last century?&#8221;, someone claimed on reddit some days ago. This kind of question is the reason we have created ILNumerics: For the first time it brings the convenience and the improved efficiency and maintainence of modern managed languages to the development of numerical algorithms and <a href="http://ilnumerics.net/Visualization-API.html" target="_blank">3d visualizations</a>.</p>
<p>The post <a rel="nofollow" href="https://ilnumerics.net/blog/are-you-afraid-of-software-developers/">Are you afraid of software developers?</a> appeared first on <a rel="nofollow" href="https://ilnumerics.net/blog">The ILNumerics Blog</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://ilnumerics.net/blog/are-you-afraid-of-software-developers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Scientific Computing Online: IPython Notebook, Shiny (R) and ILNumerics</title>
		<link>https://ilnumerics.net/blog/scientific-computing-online-ipython-notebook-shiny-r-and-ilnumerics/</link>
		<comments>https://ilnumerics.net/blog/scientific-computing-online-ipython-notebook-shiny-r-and-ilnumerics/#comments</comments>
		<pubDate>Thu, 05 Sep 2013 08:28:09 +0000</pubDate>
		<dc:creator><![CDATA[Jonas]]></dc:creator>
				<category><![CDATA[Interesting/ useless]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[3d visualization]]></category>
		<category><![CDATA[computing]]></category>
		<category><![CDATA[ILNumerics]]></category>
		<category><![CDATA[IPython Notebook]]></category>
		<category><![CDATA[R]]></category>
		<category><![CDATA[scientific plots]]></category>
		<category><![CDATA[Shiny]]></category>
		<category><![CDATA[visualization]]></category>

		<guid isPermaLink="false">http://ilnumerics.net/blog/?p=430</guid>
		<description><![CDATA[<p>It seems that we&#8217;re facing a trend at the moment: scientific computing, math and visualization software for web browsers. With our interactive web examples we have taken a step into that direction, too: Visitors of our website can change the C# code of our plotting and visualization demos in order to create a new SVG, &#8230; <a href="https://ilnumerics.net/blog/scientific-computing-online-ipython-notebook-shiny-r-and-ilnumerics/" class="more-link">Continue reading <span class="screen-reader-text">Scientific Computing Online: IPython Notebook, Shiny (R) and ILNumerics</span> <span class="meta-nav">&#8594;</span></a></p>
<p>The post <a rel="nofollow" href="https://ilnumerics.net/blog/scientific-computing-online-ipython-notebook-shiny-r-and-ilnumerics/">Scientific Computing Online: IPython Notebook, Shiny (R) and ILNumerics</a> appeared first on <a rel="nofollow" href="https://ilnumerics.net/blog">The ILNumerics Blog</a>.</p>
]]></description>
				<content:encoded><![CDATA[<p>It seems that we&#8217;re facing a trend at the moment: scientific computing, math and visualization software for web browsers. With our <a href="http://ilnumerics.net/ilnumerics-interactive-web-component.html">interactive web examples</a> we have taken a step into that direction, too: Visitors of our website can change the C# code of our plotting and visualization demos in order to create a new SVG, PNG, JPG or EXE output. This allows people to easily try out the ILNumerics syntax and our powerful <a href="http://ilnumerics.net/Visualization-API.html">2d and 3d visualization features for .NET</a>. In addition to that, <a href="http://ilnumerics.net/introducing-ilview.html">ILView</a> allows a convenient way to interactively explore scenes that are created with ILNumerics.</p>
<p>There are two other web applications that cause a lot of excitement in the scientific community at the moment: The IPython Notebook and Shiny, a tool for creating web applications in R. Let&#8217;s have a closer look…</p>
<h2>IPython Notebook: &#8220;Interactive Computational Environment&#8221;</h2>
<p>The IPython Notebook adresses the huge amount of Python users in the scientific community. It basically offers a new way for writing papers: It&#8217;s a web based editor for code execution, math, text and visualization. Because the IPython Notebook combines all parts you normally need to write a scientific paper, you won&#8217;t have to import / export different elements from several domain specific software applications: &#8220;Everything related to my analysis is located in one unified place&#8221;, explains Philip J. Guo in his blog (<a href="http://www.pgbovine.net/ipython-notebook-first-impressions.htm" target="_blank">http://www.pgbovine.net/ipython-notebook-first-impressions.htm</a>). Once you have finished your paper, you can share your IPython Notebook as HTML and PDF with your colleagues, your professor etc.</p>
<h2>Shiny: &#8220;Easy web applications in R&#8221;</h2>
<p>Shiny stands for a different approach: It allows you to implement own analysis into web applications. While IPython obviously adresses Python users, Shiny is based on R, a still very popular programming language among statisticians. What makes Shiny interesting are its interactivity features: Most demos on the Shiny website offer the opportunity to choose input parameters from text fields or drop-downs to dynamically change the output visualization. The code seems to be quite similar to R, so users who are familiar with that language will easily be able to create interactive data visualization applications for their websites using Shiny.</p>
<h2>Disadvantages: Performance does matter</h2>
<p>Both approaches make web browsers accesable for specific needs of scientific visualization: The IPython Notebook offers a convenient tool to share the results of analytics related research; Shiny allows R developers to publish particular interactive plots on the web.</p>
<p>However, both projects are limited – namely because of technological issues. The level of performance that can be realized with both platforms is restricted: You&#8217;ll face that at the latest when you start creating complex 3d scenes with either Python or R. This holds true for the platforms&#8217; web applications, too…</p>
<h2>Outlook: Scientific Computing online</h2>
<p>For certain purposes web based scientific computing software offers new convenient solutions. But if you want to realize complex interactive 3d visualizations, you still won&#8217;t use any of them but an application on your local machine instead.</p>
<p>Our interactive web examples point the direction we want to go. In order to make scientific computing more powerful, we&#8217;re working on the next step of our approach: a full WebGL support for ILNumerics. Stay tuned…</p>
<p>The post <a rel="nofollow" href="https://ilnumerics.net/blog/scientific-computing-online-ipython-notebook-shiny-r-and-ilnumerics/">Scientific Computing Online: IPython Notebook, Shiny (R) and ILNumerics</a> appeared first on <a rel="nofollow" href="https://ilnumerics.net/blog">The ILNumerics Blog</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://ilnumerics.net/blog/scientific-computing-online-ipython-notebook-shiny-r-and-ilnumerics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>High Performance Fast Fourier Transformation in .NET</title>
		<link>https://ilnumerics.net/blog/high-performance-fast-fourier-transformation-in-net/</link>
		<comments>https://ilnumerics.net/blog/high-performance-fast-fourier-transformation-in-net/#comments</comments>
		<pubDate>Sat, 24 Aug 2013 12:24:55 +0000</pubDate>
		<dc:creator><![CDATA[Jonas]]></dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Features]]></category>
		<category><![CDATA[ILNumerics]]></category>
		<category><![CDATA[Numerical Algorithms]]></category>
		<category><![CDATA[c++]]></category>
		<category><![CDATA[Fast Fourier Transform]]></category>
		<category><![CDATA[FFT]]></category>
		<category><![CDATA[High Performance]]></category>
		<category><![CDATA[Math Library]]></category>
		<category><![CDATA[Numerical Algorithm]]></category>

		<guid isPermaLink="false">http://ilnumerics.net/blog/?p=453</guid>
		<description><![CDATA[<p>„I started using ILNumerics for the FFT routines. The quality and speed are excellent in a .NET environment.“ The Fourier Transform (named after French mathematician and physicist Joseph Fourier) allows scientists to transform signals between time domain and frequency domain. This way, an arbitrary periodic function can be expressed as a sum of cosine terms. Think &#8230; <a href="https://ilnumerics.net/blog/high-performance-fast-fourier-transformation-in-net/" class="more-link">Continue reading <span class="screen-reader-text">High Performance Fast Fourier Transformation in .NET</span> <span class="meta-nav">&#8594;</span></a></p>
<p>The post <a rel="nofollow" href="https://ilnumerics.net/blog/high-performance-fast-fourier-transformation-in-net/">High Performance Fast Fourier Transformation in .NET</a> appeared first on <a rel="nofollow" href="https://ilnumerics.net/blog">The ILNumerics Blog</a>.</p>
]]></description>
				<content:encoded><![CDATA[<p style="text-align: right;"><em>„I started using ILNumerics for the FFT routines. </em><em>The quality and speed are excellent in a .NET environment.“</em></p>
<p style="text-align: left;" align="right">The Fourier Transform (named after French mathematician and physicist Joseph Fourier) allows scientists to transform signals between time domain and frequency domain. This way, an arbitrary periodic function can be expressed as a sum of cosine terms. Think of the equalizer of your mp3-player: It expresses your music’s signal in terms of the frequencies it is composed of.</p>
<p>The <a href="http://ilnumerics.net/FFTMain.html">Fast Fourier Transform (FFT)</a> is an algorithm for the rapid computation of discrete Fourier Transforms’ values. Being one of the most popular numerical algorithms, it is used in physics, engineering, math and many other domains.</p>
<p>In terms of software engineering, the Fast Fourier Transform is a very demanding algorithm: In the .NET-framework, a naive approach would cause very low execution speeds. That’s the reason why many .NET-developers have to implement native C-libraries when it comes to <a href="http://ilnumerics.net/FFTMain.html">FFTs</a>.</p>
<p>ILNumerics uses Intel&#8217;s® MKL for Fast Fourier Transforms: That&#8217;s why our users don’t have to implement native library&#8217;s themselves for high performance FFTs. No matter if they have a scientific or an industrial background, many developers rely on ILNumerics because of its implementation of the Fast Fourier Transform. It’s the fastest you can get today – even for big amounts of data.</p>
<p>ILNumerics provides interfaces to forward and backward Fourier Transformations, for real and complex floating point data, in single and double precision, in one, two or n dimensions. In addition to the MKL&#8217;s FFTs, prepared interfaces for FFTW and for AMDs ACML exist.</p>
<p>Learn more about the ILNumerics library and its implementation of <a href="http://ilnumerics.net/FFTMain.html">Fast Fourier Transformation in C#/.NET</a> in the online documentation!</p>
<p>The post <a rel="nofollow" href="https://ilnumerics.net/blog/high-performance-fast-fourier-transformation-in-net/">High Performance Fast Fourier Transformation in .NET</a> appeared first on <a rel="nofollow" href="https://ilnumerics.net/blog">The ILNumerics Blog</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://ilnumerics.net/blog/high-performance-fast-fourier-transformation-in-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SOS.dll with new commands in 4.0</title>
		<link>https://ilnumerics.net/blog/sos-dll-with-new-commands-in-4-0/</link>
		<comments>https://ilnumerics.net/blog/sos-dll-with-new-commands-in-4-0/#comments</comments>
		<pubDate>Tue, 14 Feb 2012 15:46:18 +0000</pubDate>
		<dc:creator><![CDATA[haymo]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[.NET 4]]></category>
		<category><![CDATA[Debugging]]></category>
		<category><![CDATA[SOS]]></category>
		<category><![CDATA[Tool]]></category>

		<guid isPermaLink="false">http://ilnumerics.net/blog/?p=92</guid>
		<description><![CDATA[<p>I have always been a great fan of the SOS.dll debugger extensions. It provides huge help in just so many situations, where a deep look into the inner state of the CLR is needed at runtime and the common debugging tools of Visual Studio simply dont go far enough. When working on the new memory &#8230; <a href="https://ilnumerics.net/blog/sos-dll-with-new-commands-in-4-0/" class="more-link">Continue reading <span class="screen-reader-text">SOS.dll with new commands in 4.0</span> <span class="meta-nav">&#8594;</span></a></p>
<p>The post <a rel="nofollow" href="https://ilnumerics.net/blog/sos-dll-with-new-commands-in-4-0/">SOS.dll with new commands in 4.0</a> appeared first on <a rel="nofollow" href="https://ilnumerics.net/blog">The ILNumerics Blog</a>.</p>
]]></description>
				<content:encoded><![CDATA[<p>I have always been a great fan of the SOS.dll debugger extensions. It provides huge help in just so many situations, where a deep look into the inner state of the CLR is needed at runtime and the common debugging tools of Visual Studio simply dont go far enough. When working on the new memory management of ILNumerics SOS many times lived up to its name and allowed the final insight needed to make it work. How I wished, the processor itself would expose similar potential to find out &#8216;what&#8217;s going on&#8217; as the CLR does &#8230;! </p>
<p><a href="http://blogs.msdn.com/b/tess/archive/2010/03/01/new-commands-in-sos-for-net-4-0-part-1.aspx">Tess&#8217; blogpost</a> about new commands in SOS for CLR 4.0 therefore triggered great expectations here. So I finally managed to take a quick look onto it: </p>
<p>!help already seems to come up with a whole lot of much more commands than before. In the past I have been using a small subset only, mainly !GCRoot, !DumpHeap, !DumpObject and !DumpClass. Some of the newly appeared commands sound promising as well: !HeapStat, !ListNearObj, !AnalyzeOOM, !HistInit, !HistObj, !HisttObjFind, !HistRoot, !ThreadState,!FindRoots, !GCWhere and !VerifyObj. </p>
<p>Wow! GCWhere, FindRoots and those Hist??? command definitely deserve a closer look in one of our next programming sessions &#8211; even if the next GC issue is not very lickely to appear for ILNumerics really soon <img src="https://ilnumerics.net/blog/wp-includes/images/smilies/icon_wink.gif" alt=";)" class="wp-smiley" /> </p>
<p>I have not been able to find part II of Tess&#8217; blog post, but luckily the <a href="http://msdn.microsoft.com/en-us/library/bb190764%28v=vs.100%29.aspx" target="_blank">msdn documentation</a> is still there for those commands.</p>
<p>Strange: between all those reputable commands one is found called &#8216;!FAQ&#8217;. I tried to find out, which answers the users of the SOS might seek most intensively. But unfortunately, it didn&#8217;t work out: </p>
<p><code>!FAQ<br />
The name 'FAQ' does not exist in the current context</code></p>
<p><img src="https://ilnumerics.net/blog/wp-includes/images/smilies/icon_neutral.gif" alt=":|" class="wp-smiley" /> ??</p>
<p>@Update: Somehow I really have missed the fact, that nowadays, everybody seem to be using a new tool, superseding the SOS.dll: <a href="http://blogs.msdn.com/b/tom/archive/2011/04/28/now-available-psscor4-debugger-extension-for-net-4-0.aspx" target="_blank">Psscor4</a>&#8230;. Anyway, those commands will nevertheless be checked in there. <img src="https://ilnumerics.net/blog/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /> </p>
<p>The post <a rel="nofollow" href="https://ilnumerics.net/blog/sos-dll-with-new-commands-in-4-0/">SOS.dll with new commands in 4.0</a> appeared first on <a rel="nofollow" href="https://ilnumerics.net/blog">The ILNumerics Blog</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://ilnumerics.net/blog/sos-dll-with-new-commands-in-4-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
