'2016/06'에 해당되는 글 2건

  1. 2016.06.24 bsxfun
  2. 2016.06.06 폴더 이름 변경이 갑자기 되지 않을때...
카테고리 없음2016. 6. 24. 14:28

Syntax

C = bsxfun(fun,A,B)

Description

C = bsxfun(fun,A,B) applies the element-by-element binary operation specified by the function handle fun to arrays A and B, with singleton expansion enabled. fun can be one of the following built-in functions:

@plus

Plus

@minus

Minus

@times

Array multiply

@rdivide

Right array divide

@ldivide

Left array divide

@power

Array power

@max

Binary maximum

@min

Binary minimum

@rem

Remainder after division

@mod

Modulus after division

@atan2

Four-quadrant inverse tangent; result in radians

@atan2d

Four-quadrant inverse tangent; result in degrees

@hypot

Square root of sum of squares

@eq

Equal

@ne

Not equal

@lt

Less than

@le

Less than or equal to

@gt

Greater than

@ge

Greater than or equal to

@and

Element-wise logical AND

@or

Element-wise logical OR

@xor

Logical exclusive OR


fun = @(A,B) A.*sin(B);
A = 1:7;
B = pi*[0 1/4 1/3 1/2 2/3 3/4 1].';
C = bsxfun(fun,A,B)


Posted by 오늘보다 나은 내일
카테고리 없음2016. 6. 6. 00:23

폴더를 찾을 수 없다는 둥...  권한이 없다는 둥.. 


갑자기 폴더 이름 변경이 되지 않을때..


HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\


에서 아래 항목 삭제 후 재부팅 


{2112AB0A-C86A-4ffe-A368-0DE96E47012E}

{491E922F-5643-4af4-A7EB-4E7A138D8174}

{7b0db17d-9cd2-4a93-9733-46cc89022e7c}

{A302545D-DEFF-464b-ABE8-61C8648D939B}

{A990AE9F-A03B-4e80-94BC-9912D7504104} 


Posted by 오늘보다 나은 내일