今天心情不错

2017-03-27
matlab to Python MATLAB转PYTHON(持续更新)

  1. dot
    1
    np.sum(A.conj()*B), axis=0)

官网

阅读此文

2017-03-24
NRF51822操作MX25L4005

nrf51822操作MX25L4005

指令集:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#define SPI_Flash_Read_CMD 0x03
#define SPI_Flash_Sector_Erase 0x20
#define SPI_Flash_Block_Erase 0xD8
#define SPI_Flash_Chip_Erase 0x60
#define SPI_Flash_Page_Program 0x02
#define SPI_Flash_Read_Status 0x05
#define SPI_Flash_Write_Status 0x01
#define SPI_Flash_Write_Enable 0x06
#define SPI_Flash_Write_Disable 0x04
#define SPI_Flash_Read_ID 0x9F
#define SPI_Flash_Read 0x03
#define SPI_Flash_Fast_Read 0x0B
#define SPI_Flash_Power_Down 0xB9
#define SPI_Flash_Release_DP 0xAB
#define SPI_Flash_Enter_4K 0xA5
#define SPI_Flash_Exit_4K 0xB5
#define SPI_Flash_Read_ES 0xAB
#define SPI_Flash_Read_EMS 0x90
#define SPI_Flash_Parallel_Mode 0x55

内存结构:

DATASTRUCT

阅读此文

2017-03-23
NRF51822 SPI

调试NRF51822 SPI 和LIS3DH通讯, 碰到一个很奇葩的问题,做一下记录。以免自己忘记。 测试了10多个小时。

起因

NRF51822 和 LIS3DH通讯, 并把数据通过ble_uart协议发送到手机上。 之前已经做过一次。 代码基本现成。 但就是在读取不到数据。
找了很久代码的原因。依然没有找到。 后来突然想起来。工程文件好像之前清理过。 因为之前的项目用不到SPI, 把SPI相关的信息清了。
SPI_NRF51

阅读此文

2017-03-22
Computer Investing W4

看Cousera的Computer Investing 的随笔

where does info come from

price/volume: from the markets 价格/成交量:从市场来 true value
fundamentals: sec filings 基本面:财务报表
news: exogenous sources 新闻: 外部生成.

3 versions of efficient markets hypothesis

3种 有效市场假设

  • weak: 新闻不影响以后的价值, 只影响当前和以前的. 技术可分析的
  • semi-strong 消息会连续的影响价值
  • strong 1+2 还可能会对没有披露的信息产生响应.
阅读此文

2017-03-22
matlab call python

MATLAB call python

Make sure the Python module is on the Python search path. To test if module mymod is on the path, type:

1
py.importlib.import_module('mymod')

If Python cannot find the module, MATLAB displays a Python error message.

To add mymod, in folder modpath, to the path, type:

1
2
3
4
P = py.sys.path;
if count(P,'modpath') == 0
insert(P,int32(0),'modpath');
end
阅读此文

2017-03-21
首弹

今天开始准备写写BLOG

写了很多年日记,但就是不喜欢在网上写东西。文笔差是一部分,不愿意和陌生人分享也是一部分。

为什么开始写?

也许只是李笑来的影响。 想写写文字。 一来给自己一个锻炼文笔的地方。 二来也给自己一点压力吧。 还有很重要的一点,结婚,生子之后,确实成长了很多。 有很多东西,挺想和人说说。

阅读此文