'Apple Tree'에 해당되는 글 57

  1. 2009.01.30 lambda
  2. 2009.01.29 dimension of matrix ( or array )
  3. 2009.01.29 create array in numpy
  4. 2009.01.29 numpy
  5. 2009.01.20 numpy
  6. 2008.12.11 WebNotes
  7. 2008.12.11 LTE and Bibro
  8. 2008.12.11 find linux command
  9. 2008.10.30 gunzip
  10. 2008.09.02 Useful background knowledge for Machine Learning
Programming/Python | Posted by 알 수 없는 사용자 2009. 1. 30. 17:27

lambda

>>> def f ( x ) : return x**2
>>> g = lambda x : x **2

>>> h = lambda x: ( x < 1 ) or x * f(x-1)          #x!


Programming/Python | Posted by 알 수 없는 사용자 2009. 1. 29. 22:27

dimension of matrix ( or array )

>>> U = random.rand ( 200, 20 )
>>> shape ( U )
( 200, 20 )

>>> size ( U ) #return total element of the matrix ( array )
4000
Programming/Python | Posted by 알 수 없는 사용자 2009. 1. 29. 22:23

create array in numpy

array ( sequence, dtype = None, copy = True, order = None, subok = True, ndmin=True )
>>> from numpy import *
>>> a = array ( [ 1, 2, 3 ], dtype = float )
>>> a
array ( [ 1., 2., 3. ] )

카테고리 없음 | Posted by 알 수 없는 사용자 2009. 1. 29. 21:55

numpy

random matrix 생성 :
numpy.random.rand ( d0, d1, d2, ... )
ex ) : numpy.random.rand ( 2, 3 )
 >>> array([[ 0.45133966,  0.72357161,  0.31706311],
                    [ 0.15414275,  0.0952978 ,  0.35952268]])

Programming/Python | Posted by 알 수 없는 사용자 2009. 1. 20. 14:41

numpy

random matrix 생성 :
numpy.random.rand ( d0, d1, d2, ... )
ex ) : numpy.random.rand ( 2, 3 )
 >>> array([[ 0.45133966,  0.72357161,  0.31706311],
                    [ 0.15414275,  0.0952978 ,  0.35952268]])

Scientific Essay | Posted by 알 수 없는 사용자 2008. 12. 11. 23:24

WebNotes

이름 그대로 웹페이지에다 post-it를 붙이는 것이다.

http://www.webnotes.net

정말로 기발한 아이디어다..
어떻게 웹페이지에 포스티지를 붙일 생각을 했을까?
웹페이지로 보는 pdf파일에도 포스트가 가능할까?
그러면 논문 읽기가 너무 편하겠다.
Scientific Essay | Posted by 알 수 없는 사용자 2008. 12. 11. 20:38

LTE and Bibro

롱 텀 에볼루션
(LTE·LongTerm Evol ution)

와이브로에 맞서는 4세대 이동통신 방식. 노키아, 에릭슨을 비롯해 유럽 통신업체들이 초기 개발을 주도했으며, 퀄컴과 LG전자가 최근 참여했다. 와이브로와 비슷한 속도를 구현하면서도 기존 네트워크 망(WCDMA)과 연동이 가능해 투자비와 운영비를 절감할 수 있는 게 특징이다. 다만 상용화 일정은 와이브로보다 늦을 전망이다

와이브로(WiBro)

'wireless broadband'의 약자. 우리나라가 개발한 3·4세대 이동통신 방식이다. 고속 이동 중에 빠른 속도로 데이터를 주고받을 수 있는 무선통신 기술로, 최근 개발된 4세대 '와이브로 에볼루션'은 이동 중에도 영화 1편(700메가바이트)을 내려 받는 데 30여 초면 충분하다
Linux & Ubuntu/Linux tips | Posted by 알 수 없는 사용자 2008. 12. 11. 15:50

find linux command

#apropos
apropos what ?

#apropos translate
...

1   可执行程序或shell命令

2   系统调用

3 库调用

8 系统管理员命令(通常仅root可用)



Linux & Ubuntu/Linux tips | Posted by 알 수 없는 사용자 2008. 10. 30. 15:19

gunzip

gunzip -c svm_light.tar.gz | tar xvf -
Machine Learning | Posted by 알 수 없는 사용자 2008. 9. 2. 14:32

Useful background knowledge for Machine Learning