ilnumerics

How to reverse the axis in ILNumerics

蹲街弑〆低调 提交于 2019-12-02 07:25:02
I want to reverse the Y axis in ILLinePlot from top to bottom (from descending become ascending). My result is like this: here is the code: scene.Add(new ILPlotCube { new ILLinePlot(ILMath.tosingle(ZDistance["1,0;:"]), markerStyle: MarkerStyle.Dot) }); How to reverse the Y axis become like this figure? Turn the plot cube around the X axis by 180°: ilPanel1.Scene.Add(new ILPlotCube { Children = { new ILLinePlot(ILSpecialData.sincos1Df(200,1)[":;0"].T) }, Rotation = Matrix4.Rotation(new Vector3(1,0,0), ILMath.pif) }); You may want to further configure the plots axes. 来源: https://stackoverflow

Beginner ILNumerics: install under VS2012

倖福魔咒の 提交于 2019-12-01 18:00:45
问题 I am very much interested in ILNUmerics and would like to try the free version, but I am having troubles. I have started with a console application and was trying to run the 'hello ilnumerics'console application but I noticed that VS fails to find MKL libraries. I am using VS2012 under Windwos 8 (through Bootcamp on a MacBook Pro mid 2010; should it be relevant); I have installed the NuGet Packages extension from the Project solution. Then right-click on references in the solution explorer,

Beginner ILNumerics: install under VS2012

♀尐吖头ヾ 提交于 2019-12-01 17:45:16
I am very much interested in ILNUmerics and would like to try the free version, but I am having troubles. I have started with a console application and was trying to run the 'hello ilnumerics'console application but I noticed that VS fails to find MKL libraries. I am using VS2012 under Windwos 8 (through Bootcamp on a MacBook Pro mid 2010; should it be relevant); I have installed the NuGet Packages extension from the Project solution. Then right-click on references in the solution explorer, 'Manage Nu Get Packages', fron online/search found ilnumerics in various versions. I chose 'ILNumerics'

How to find the 3D coordinates of a surface from the click location of the mouse on the ILNumerics surface plots?

删除回忆录丶 提交于 2019-12-01 08:28:28
问题 Currently our system uses the ILNumerics 3D plot cube class with an ILNumerics surface component to display a 3D meshed surface. An aim for our system is to be able to interrogate individual points on the surface from a mouse click on the plot. We have the MouseClick event set up on our plot the problem is I am unsure on how to get the values for the particular point on the surface that has been clicked, could anyone help with this issue? 回答1: The conversion from 2D mouse coordinates to 3D