sourceforge

Is it possible to call matlab functions from Silverlight / C#?

匿名 (未验证) 提交于 2019-12-03 00:53:01
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: Is it possible to call matlab functions from Silverlight / C# ? 回答1: If you have an assembly (dll) that can interpret Mathlab calls, you should be able to include that assembly in your project and compile it with the rest of your application. Obviously, you won't be able to run Silverlight side-by-side to interface with an installed instance of Matlab (unless the API is exposed through COM interop and using Silverlight 4, but that could get messy). The Web API on sourceforge, as mentioned by Matt, seems like a really good fit if you can't

Windows下CodeBlocks配置 支持C++11 多线程显示thread编译错误的问题解决

匿名 (未验证) 提交于 2019-12-03 00:32:02
搞了一个晚上,直到看到这篇文章才解决,转载一下,原文链接如下:https://blog.csdn.net/huhaijing/article/details/51753085 失败的几种姿势 http://blog.csdn.net/guogaoan/article/details/17653295 (1) http://sourceforge.net/projects/mingwbuilds/files/host-windows/releases/4.8.1/32-bit/threads-win32/sjlj/ (2) http://sourceforge.net/projects/mingwbuilds/files/host-windows/releases/4.8.1/64-bit/threads-win32/sjlj/ 下载之后按照它的介绍配置,运行一个测试程序: #include <iostream> #include <thread> using namespace std ; void hello() { cout << "hello kitty" <<endl; } int main() { std ::thread t(hello); t.join(); return 0 ; } 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16

gnuplot 环境配置

匿名 (未验证) 提交于 2019-12-02 23:37:01
2、gnuplot 环境配置 2.1 gnuplot 的当前版本是什么? gnuplot的当前发布版本为5.0,于2015年1月发布。增量版本(patchLevel1,2,…)通常每六个月发布一次。gnuplotis的开发版本目前为5.1。 2.2 在哪里可以找到 gnuplot? 最好从 http://www.gnuplot.info 开始。从那里,您可以找到指向其他站点的各种指针,包括SourceForge http://sourceforge.net/projects/gnuplot 上的项目开发站点。源分发(“gnuplot-4.6.0.tar.gz”或类似名称)可从官方分发网站 http://sourceforge.net/projects/gnuplot 获得。 2.3 在哪里可以获得 gnuplot 的当前开发版本? gnuplot的开发版本作为cvs源代码树在线提供,可从 http://sourceforge.net/projects/gnuplot “cvs”部分直接浏览。您可以根据其中的文档下载所有当前源;例如,通过如下命令序列: cvs-d:pserver:anonymous@gnuplot.cvs.sourceforge.net :/cvsroot/gnuplot login cvs-z3-d:pserver:anonymous@gnuplot.cvs

SVN+SSH and Sourceforge

依然范特西╮ 提交于 2019-12-02 16:22:40
I'm new to both Sourceforge and SVN (SilkSVN on Windows). I managed to check out a project using svn co --username=zeroth123 svn://zeroth123@svn.code.sf.net/p/stddecimal/code/trunk stddecimal-code However, every time I try and use ssh (so I can check in for example) it fails with > svn co --username=zeroth123 svn+ssh://zeroth123@svn.code.sf.net/p/stddecimal/code/trunk stddecimal-code svn: E720087: Unable to connect to a repository at URL 'svn+ssh://zeroth123@svn.code.sf.net/p/stddecimal/code/trunk' svn: E720087: Can't create tunnel: The parameter is incorrect. I've set SVN_SSH to point to my

Recommended DVCS mechanism for hosting many independent patches

空扰寡人 提交于 2019-12-02 05:32:46
问题 I have a project just getting started at http://sourceforge.net/projects/iotabuildit/ (more details at http://sourceforge.net/p/iotabuildit/wiki/Home/) that is currently using Mercurial for revision control. And it seems like Mercurial and SourceForge almost have all the right features or elements to put together the collaboration mechanism I have in mind for this project, but I think I'm not quite there yet. I want people to be able to submit, discuss and vote on individual changes from a

Recommended DVCS mechanism for hosting many independent patches

淺唱寂寞╮ 提交于 2019-12-02 02:14:07
I have a project just getting started at http://sourceforge.net/projects/iotabuildit/ (more details at http://sourceforge.net/p/iotabuildit/wiki/Home/ ) that is currently using Mercurial for revision control. And it seems like Mercurial and SourceForge almost have all the right features or elements to put together the collaboration mechanism I have in mind for this project, but I think I'm not quite there yet. I want people to be able to submit, discuss and vote on individual changes from a large number of individuals (more developers than a project would normally have). And I want it to be as

关于Qomo 2.0 beta1的发布

空扰寡人 提交于 2019-12-01 18:43:05
注意:此前对Qomo V2 beta1做过一次发布,但因为该版本文件已经丢失,且未在sourceforge中发布, 因此此次发布仍然使用beta1的名称。并将更新sourceforge中的文件。 一、Qomolangma 2.0 Beta1 参见如下发布说明: Qomo 2.0 beta1 发布说明及新功能 此外,今次发布的更新列表包括: 添加工具函数toEtor()和类Dict() Class()支持将匿名函数注册为匿名类 在内核方面的一些优化代码 HttpGetMachine()作了一些小的修改 二、有关toEtor() 参见/Framework/TestCase/T_Etor.html。 所谓Etor,是指一种小型的执行器,可以处理代码、标志等。 Etor()本质上是对eval()的封装,但它具有一些有趣的特性。例如我们在PHP中可以有一种类似如下的语法: str = "abcd${value}ghi" 在这个例子中,如果我们试图将 ${value} 替换为当前代码环境中的变量value的值,那么就可以使用etor来做。 Etor是一个字符串,它可以通过toEtor()来得到,也可以通过eval()来执行。重要的是,我们在String中扩展了一个etor()方法,通过这个方法可以自动应用Etor,以替换字符串中的特定标志。 Etor可以存取闭包外或从闭包外去存取闭包内部的数据

eclipse3.4 + MinDW-5.1.4 c/c++开发环境配置(完整)

久未见 提交于 2019-12-01 08:34:18
大致步骤如 摆渡生活 文章所写,我只补充一点:在安装完 MinDW 后还应该安装 gdb-6.3-2.exe 。以增加对程序的Debug功能。 ======================================== 最近学习rtp的东西,需要用到c++,顺便搭建c++的环境,开始折腾了半天,始终编译不了。今天最后弄好,Hello World!!! 总算出来了。 环境准备: CDT: http://download.actuatechina.com/eclipse/technology/epp/downloads/release/20071103/eclipse-cpp-europa-fall2-win32.zip 如果下载了cdt-master-4.0.2 解压到eclipse下面始终没有成功,会抛出“(Exec error:?????????¨?)”这样的异常。 MinDW: http://nchc.dl.sourceforge.net/sourceforge/mingw/MinGW-5.1.4.exe MSYS: http://jaist.dl.sourceforge.net/sourceforge/mingw/MSYS-1.0.10.exe 安装步骤: CDT和MinDW的顺序前后没有关系,只要MinDW在MSYS前面就行。 1、 具体MinDW的安装比较简单,

github 这个网站到底有什么用?

左心房为你撑大大i 提交于 2019-12-01 08:23:07
开发者提交自己的代码,大家可以共享工作成果,比较出名的开源软件都会在上面发布自己的代码。类似的还有sourceforge (SourceForge 是全球最大开源软件开发平台和仓库,网站建立的宗旨,就是为开源软件提供一个存储、协作和发布的平台。SourceForge 上拥有大量非常优秀的开源软件) 。对普通开发者而言,那个基本上就是下载别人源码学习的好去处,也能找到好多好玩的软件。 github是一个代码托管平台。 它可以公开你的代码让所有人都参与 它很大,很多很厉害的项目托管在上面 以及,git是 一个很好用的 版本管理工具. 很多出名的人把代码都发布到上面,而且是开源的,这个可以互相吸取经验,借鉴别人的代码,思想,共同进步。而且一般大公司的什么网站啊,什么软件发布啊都有一些是通过 git 这个平台发布的。正因为这么多的国外国内大牛们都把代码提交到 git 平台,所以 GitHub 越来越好,越来越出名。感觉这个平台逼格高一点,其实我们用其他的也可以,像国内的码云啊,这个好像是中国开源社区搞的吧,感觉还可以(因为网站用的是中文)。 我认为 git 的一个好处就是它不仅是代码托管,而且可以进行版本控制。如果写一个大型的项目,版本的改动是必不可少的,分工合作是必须的。 GitHub 这个平台就给我们提供这么一个功能。它可以进行版本的控制,可以进行版本回退什么的

MyEclipse插件介绍与下载

北城余情 提交于 2019-12-01 05:54:31
1.Eclipse下载 EMF,GEF - Graphical Editor Framework,UML2,VE - Visual Editor都在这里下载 http://www.eclipse.org/downloads/index.php 1.lomboz J2EE插件,开发JSP,EJB http://forge.objectweb.org/projects/lomboz 1.MyEclipse J2EE开发插件,支持SERVLET/JSP/EJB/数据库操纵等 http://www.myeclipseide.com 2.Properties Editor 编辑java的属性文件,并可以自动存盘为Unicode格式 http://propedit.sourceforge.jp/index_en.html 3.Colorer Take 为上百种类型的文件按语法着色 http://colorer.sourceforge.net/ 4.XMLBuddy 编辑xml文件 http://www.xmlbuddy.com 5.Code Folding 加入多种代码折叠功能(比eclipse自带的更多) http://www.coffee-bytes.com/servlet/PlatformSupport 5.jseclipse 支持JRE1.4 http://www