`
deepfuture
  • 浏览: 4412020 次
  • 性别: Icon_minigender_1
  • 来自: 湛江
博客专栏
073ec2a9-85b7-3ebf-a3bb-c6361e6c6f64
SQLite源码剖析
浏览量:80128
1591c4b8-62f1-3d3e-9551-25c77465da96
WIN32汇编语言学习应用...
浏览量:70342
F5390db6-59dd-338f-ba18-4e93943ff06a
神奇的perl
浏览量:103582
Dac44363-8a80-3836-99aa-f7b7780fa6e2
lucene等搜索引擎解析...
浏览量:286553
Ec49a563-4109-3c69-9c83-8f6d068ba113
深入lucene3.5源码...
浏览量:15054
9b99bfc2-19c2-3346-9100-7f8879c731ce
VB.NET并行与分布式编...
浏览量:67785
B1db2af3-06b3-35bb-ac08-59ff2d1324b4
silverlight 5...
浏览量:32292
4a56b548-ab3d-35af-a984-e0781d142c23
算法下午茶系列
浏览量:46075
社区版块
存档分类
最新评论
文章列表
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 ...
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 ...
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 ...
>> 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 ...
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 ...
BP网络设计2要素: 1、精度 2、训练时间 1)循环次数 2)每次循环中计算所花费的时间   异或问题是不能用线性神经网络解决的,必须使用非线性,BP可以轻易解决这个问题   >> P=[0 0 1 1;0 1 0 1] P =      0     0    ...
一、可以使用菜单中的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  ...
>> 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 >>    
 自适应网络小结                           
梯度下降算法过程  
Global site tag (gtag.js) - Google Analytics