- 浏览: 4412020 次
- 性别:
- 来自: 湛江
博客专栏
-
SQLite源码剖析
浏览量:80128
-
WIN32汇编语言学习应用...
浏览量:70342
-
神奇的perl
浏览量:103582
-
lucene等搜索引擎解析...
浏览量:286553
-
深入lucene3.5源码...
浏览量:15054
-
VB.NET并行与分布式编...
浏览量:67785
-
silverlight 5...
浏览量:32292
-
算法下午茶系列
浏览量:46075
最新评论
-
yoyo837:
counters15 写道目前只支持IE吗?插件的东西是跨浏览 ...
Silverlight 5 轻松开启绚丽的网页3D世界 -
shuiyunbing:
直接在前台导出方式:excel中的单元格样式怎么处理,比如某行 ...
Flex导出Excel -
di1984HIT:
写的很好~
lucene入门-索引网页 -
rjguanwen:
在win7 64位操作系统下,pygtk的Entry无法输入怎 ...
pygtk-entry -
ldl_xz:
http://www.9958.pw/post/php_exc ...
PHPExcel常用方法汇总(转载)
文章列表
matlab-数据库连接
- 博客分类:
- 数学与计算
1、连接数据库
1)相关参数
help database Database Toolbox Version 3.7 (R2010a) 25-Jan-2010 General functions: chkprops - Database object properties. logintimeout - Set or get time allowed to establish database connection. setdbprefs - Set preferences for database actions for handling null ...
matlab-底层文件输入输出函数
- 博客分类:
- 数学与计算
fclose :关闭文件 fopen :打开文件 fread :从文件中读入二进制数据 fwrite :把二进制数据写入文件 fgetl :逐行从文件中读取数据并放弃换行符 fgets :从文件中读取行,保留换行符并把行作为字符串返回 fprintf:把格式化数据写入文件 fscanf :从文件中读取格式化数据 feof :测试文件是否结束 ferror:测试文件输入输出错误信息 frewind:文件指针归零 fseek :设置文件位置指针 ftell :获取文件位置指针 sprintf:把格式化数据写入一个字符串 sscanf :使用格式控制读取字符串 特殊函数csvread :读取逗号分隔格 ...
help fseek FSEEK Set file position indicator. STATUS = FSEEK(FID, OFFSET, ORIGIN) repositions the file position indicator in the file associated with the given FID. FSEEK sets the position indicator to the byte with the specified OFFSET relative to ORIGIN. FID is ...
help dotprod dotprod Dot product weight function. Weight functions apply weights to an input to get weighted inputs. dotprod(W,P) returns the dot product W * P of a weight matrix W and an input P. dotprod('size',S,R) returns the size of a weight matrix required by this function to weight ...
matlab-低级文件读写
- 博客分类:
- 数学与计算
ss.dat的内容如下:
0,1,0,1,11,1,1,0,0
>> fid=fopen('ss.dat')
fid =
3
>> a=fread(fid)
a =
48 44 49 44 48 44 49 44 49 10 49 44 49 44 49 44 48 44 48
>>
上面读取的是文件的二进制内容,以ascii码形式读取,逗号的ascii码就是44
>> f ...
matlab-excel等表格文件读写
- 博客分类:
- 数学与计算
>> xlsfinfo('e:\test.xls')
ans =
Microsoft Excel Spreadsheet
>> a=xlsread('e:\test.xls')
a =
1.0e+004 *
NaN 0.0234 NaN 0.0234 0.0124 0.5646 0.0436 3.2524 0.0236
>> a(1)
ans =
NaN
>> a(1,2)
ans =
234
>>
lot ...
matlab-图像、视频和音频
- 博客分类:
- 数学与计算
imfinfo('e:\1.jpg')a=imread('e:\1.jpg','jpg')
>> image(a)>>
image显示图像
imwrite输出图像数据
>> imwrite(a,'e:\x.jpg','jpg')>>
auread读音频
auwrite、wavwrite为写音频
aviread为读视频
avifile建立AVI文件,addframe获取图像序列,放在avi文件中,close关闭avi文件
diary用于记录MATLAB窗口的输入 的命令和响应输出,diary off关闭记录,diary on打开记录
>> diary('log.txt')>> eval('aa='aaaabbb'')??? eval('aa='aaaabbb'') |Error: Unexpected MATLAB expression. >> eval('aa=23455')
aa =
23455
>> double('abcdef')
ans =
97 98 99 100 10 ...
text1.txt内容如下:
货币资金,6865234.00 , 短期借款,120000.00 应收票据,72120.00 , 应付票据,85500.00 应收账款,38050.00 , 应付账款,80200.00 减:坏账准备,, 预收账款, 应收账款净额,38050.00 , 应付工资, 其他应收款,, 应付福利费,8430.00 预付账款,26600.00 , 应交税金,24420.00 存 货,281950.00 , 应付股利,34000.00 待摊费用,100.00 , 其他应付款, 流动资产合计,7284054.00 ...
>> help textscan TEXTSCAN Read formatted data from text file or string. C = TEXTSCAN(FID,'FORMAT') reads data from an open text file identified by FID into cell array C. Use FOPEN to open the file and obtain FID. The FORMAT is a string of conversion specifiers enclosed in single q ...
matlab-BP神经网络
- 博客分类:
- 数学与计算
BP网络设计2要素:
1、精度
2、训练时间
1)循环次数
2)每次循环中计算所花费的时间
异或问题是不能用线性神经网络解决的,必须使用非线性,BP可以轻易解决这个问题
>> P=[0 0 1 1;0 1 0 1]
P =
0 0 ...
matlab-数据输入与输出
- 博客分类:
- 数学与计算
一、可以使用菜单中的import data来导入数据
二、也可以通过程序:
1、保存工作区变量
>> a=[1 2 4;4 5 6]
a =
1 2 4 4 5 6
>> b=[11 12 14;14 15 16]
b =
11 12 14 14 ...
matlab-线性下标
- 博客分类:
- 数学与计算
>> a=[1 2 3;4 5 6;7 8 9]
a =
1 2 3 4 5 6 7 8 9
>> sub2ind(size(a),1,2)
ans =
4
>> a(4)
ans =
2
>> sub2ind(size(a),2,1)
ans =
2
>> a(2)
ans =
4
>>