U E D R , A S I H C RSS

BackLinks search for "Z"

BackLinks of Z


Search BackLinks only
Display context of search results
Case-sensitive searching
  • AcceleratedC++/Chapter3
         using std::streamsize;
          streamsize prec = cout.precision();
         // 요건 디폴트 생성자(그냥 넘어가자. 책에는 Default Initialization이라고 써있다.)에 의해 그냥 비어있게 된다.
          * size() 멤버 함수 : vector가 소지하고 있는 값들의 갯수를 리턴해준다.
         typedef vector<double>::size_type vec_sz;
         vec_sz size = homework.size();
          * typedef : vector<double>::size_type이라고 일일히 쳐주기엔 너무 길기 ㅤㄸㅒㅤ문에 vec_sz로 줄여쓴 것이다.
          if(size == 0) {
          median = size % 2 == 0 ? (homework[mid] + homework[mid-1]) / 2 : homework[mid];
          * etc : vector의 맨 처음 인덱스는 [0]이다. 마지막은 [size-1]
          // 원래 책에는 "typedef vector<double>::size_type vec_sz;" 이렇게 되어있지만
          // 컴파일시 에러가 나서 같은 의미인 unsigned int형을 써서 vec_sz을 표현했습니다.
          typedef unsigned int vec_sz;
          vec_sz size = homework.size();
          if(size == 0) {
          vec_sz mid = size / 2;
          median = size % 2 == 0 ? (homework[mid] + homework[mid-1]) / 2 : homework[mid];
          streamsize prec = cout.precision();
          * 끝내지 않는다면, size/2=0 이다. homework[0]은 정의되어 있지 않다. 그런 것이다.
          * size_type은 unsigned int 이다.
  • CNight2011/고한종
         arr[i] = *&(arr[0]+sizeof(int)*i);
         arr[i][j] *&(arr[0][0] sizeof(int)*i*j+sizeof(int)*i); -> 맞겠지여...?
          float* dia =(float*)malloc(sizeof(float)*10);
         if(i%10==0)realloc(dia,sizeof(float)*10*k++);이라고 했다.
  • CNight2011/김태진
         malloc, 포인터에 대해서 지원누나한테 배웠는데요. a[2]==*(&a[0]+sizeof(int 2))라는 걸 배웠지요.
  • JavaScript/2011년스터디/3월이전
          * [http://www.yes24.com/24/goods/2943930?scode=032&OzSrank=1 자바스크립트 완벽 가이드]의 목차를 참고하여 진행한다.
          * 네임스페이스 사용 시 org.zeropage.namespace는 되고 org.zeropage.namespace.function1은 안 되는 이유
          * 네임스페이스 사용 시 org.zeropage.namespace는 되고 org.zeropage.namespace.function1은 안 되는 이유
          * [jQuery], [http://sizzlejs.com/ Sizzle], [https://github.com/douglascrockford/JSON-js JSON-js] 중 고민하다 간단한 JSON-js를 분석하기로 함
  • MatrixAndQuaternionsFaq
         Q29. How do I generate a rotation matrix in the Z-axis?
          | 0 0 1 Z |
          M[3][2] = Z ;
          The size of a matrix is defined in terms of the number of rows
          The "order" of a matrix is another name for the size of the matrix.
          ie. Rotation in X transforms Y and Z
          Rotation in Y transforms X and Z
          Rotation in Z transforms X and Y
          Given a vertex V = (x,y,z), rotation angles (A,B and C) and translation
          sz = sin(C)
          cz = cos(C)
          x1 = x * cz + y * sz // Rotation of each vertex
          y1 = y * cz - x * sz
          z1 = z
          x2 = x1 * cy + z1 * sy
          y2 = z1
          z2 = z1 * cy - x1 * sy
          y3 = y2 * cx + z1 * sx
          z3 = z2 * cx - x1 * sx
          zr = z3 + F
  • PyIde/Scintilla
  • 날다람쥐 6월9일
         === ZeroPage (새싹-날다람쥐 6월 9일) ===
         [http://wiki.zeropage.org/wiki.php/%EC%9C%A0%EC%A0%95%EC%84%9D]
         //정석: 여기서 ap+1 에서의 1 은 1byte의 1이 아니라 sizeof(int) * 1 의 1이다. 따라서 for문 형태로 작성할 때는 ap + i로 하면 된다.
  • 상협/삽질일지/2002
  • 새싹C스터디2005/pointer
         void ArrayOutput(int* aArray, int aSize);
          ArrayOutput(array, sizeof(array)/sizeof(int));
         void ArrayOutput(int* aArray, int aSize){
          for (i=0; i<aSize; i++){
  • 새싹교실/2011/씨언어발전/5회차
  • 새싹교실/2012/AClass/1회차
  • 새싹교실/2012/AClass/2회차
          int n=sizeof(list)/sizeof(int);
          if(al1>='a' && al1<='z') //소문자일 경우
          else if(al1>'A' && al1<='Z') //대문자일 경우
          if(('A'<=in[i]) && (in[i]<='Z'))
          else if (('a'<=in[i]) && (in[i]<='z'))
  • 새싹교실/2012/startLine
          이런 상황을 피하기 위해서는 처음에 p를 초기화 하고 사용하거나 memset(p.name, 0, sizeof(char)*100);을 하는 방법이 있습니다.
          account.name = (char *)malloc(sizeof(char) * (strlen(name)+1));
          res = (LinkedList *)malloc( sizeof(LinkedList) );
          res = (Node *)malloc( sizeof(Node) );
  • 새싹교실/2013/록구록구/8회차
  • 이승한/PHP
  • 이중포인터의 동적할당 예제
          p=(char **)malloc(n*sizeof(char *));
          p[i]=(char *)malloc(m*sizeof(char));
  • 캠이랑놀자/보창
         newR = Image.new("RGB", im.size)
         newG = Image.new("RGB", im.size)
         newB = Image.new("RGB", im.size)
         newGray = Image.new("P", im.size)
         newWhite = Image.new("RGB", im.size)
         newDark = Image.new("RGB", im.size)
         sizeX, sizeY = im.size
Found 17 matching pages out of 7540 total pages

You can also click here to search title.

Valid XHTML 1.0! Valid CSS! powered by MoniWiki
last modified 2021-02-07 05:28:31
Processing time 0.0110 sec