本人安装的版本是MATLAB(R2010b)
打包步骤如下:
MATLAB命令窗口输入deploytool,打开一个Eeployment Project的窗口:
1.在Name输入你想要打包后的文件的名字;
2.在Location输入你MATLAB当前的路径;
3.在Target选择第一项Windows Standalone Application;
4.确定后打开Depoly...
分类:
其他好文 时间:
2014-12-16 17:14:37
阅读次数:
169
Combination Sum IIGiven a collection of candidate numbers (C) and a target number (T), find all unique combinations inCwhere the candidate numbers sum...
分类:
其他好文 时间:
2014-12-16 16:39:06
阅读次数:
264
项目导入的时候,遇到了这个问题:android build path contains duplicate entry:'src' for project XXX,如图:
解决办法:找到该工程的project.properties文件,修改target=android-17,修改后面的数字,把其修改为我们安装的sdk的对应的数字
原因是:我所安装的sdk的版本和所导入的工程的sdk的版...
分类:
移动开发 时间:
2014-12-16 15:06:16
阅读次数:
223
在使用js中的"=="进行字符串的比较时,发现在英文情况下是ok的,但在中文比较时则不行了。在网上搜索,提供了一个解决方法,使用stringObject.localeCompare(target)来解决中文比较问题。string_a.localeCompare(string_b);/* Return...
分类:
编程语言 时间:
2014-12-16 14:52:08
阅读次数:
323
【Combination Sum I】
Given a set of candidate numbers (C) and a target number (T), find all unique combinations in C where
the candidate numbers sums to T.
The same repeated number may be cho...
分类:
其他好文 时间:
2014-12-16 11:45:46
阅读次数:
186
Two SumGiven an array of integers, find two numbers such that they add up to a specific target number.The function twoSum should return indices of the...
分类:
其他好文 时间:
2014-12-16 11:19:16
阅读次数:
134
//防止退格键返回 $("#txtMsg").keydown(function (e) { var doPrevent; if (e.keyCode == 8) { var d = e.srcElement || e.target; ...
分类:
其他好文 时间:
2014-12-16 11:13:50
阅读次数:
166
题目:
Given an array of integers, find two numbers such that they add up to a specific target number.
The function twoSum should return indices of the two numbers such that they add up to the target, ...
分类:
其他好文 时间:
2014-12-15 23:37:57
阅读次数:
224
在这里我把我常用的eclipse快捷键进行总结下:1>代码自动提示(不用Alt+/)在Preference中Java中Editor中填入如下字符:abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ({[.如下位置:2>行编辑:定位行:ctrl+L拷贝行:ctrl+alt+方向键下键删除行:ctrl+d移动行:a..
分类:
系统相关 时间:
2014-12-15 21:54:38
阅读次数:
218