«matrix» 태그된 질문

행렬은 행과 열이있는 사각형으로 배열 된 숫자 목록입니다. 프로그래밍에서는 2D 어레이라고도합니다. 매트릭스 조작이 어려운 경우이 태그를 사용하십시오.

6
간단한 스프레드 시트 평가
규칙 셀 범위 참조가 없습니다 ( A2:B3). 최대 9 행 9 열. 순환 참조 또는 수식 오류가 없습니다. 빈 셀은로 평가됩니다 0. 데이터는 숫자 일 뿐이지 만 문자열로 간주 될 수 있습니다. 수식은 문자열입니다. 구현 선택 다음 사항에서 선택 사항을 진술해야합니다. 수식 앞에 접두사를 붙여야합니다 (예 : =– 여부). 두 …

11
이 배열을 행렬로 변환
중첩되지 않은 배열을 입력으로 사용하십시오. 다음 방법을 사용하여 행렬로 변환하십시오. 내 배열이 [1, 2, 3, 4, 5] 먼저, 그 배열을 5 번 반복합니다 : (길이) [[1, 2, 3, 4, 5], [1, 2, 3, 4, 5], [1, 2, 3, 4, 5], [1, 2, 3, 4, 5], [1, 2, 3, 4, 5]] …

8
행렬 삼각법
소개 가장 일반적인 두 삼각 함수, sine및 cosine(또는 sin과 cos짧은 경우), 행렬 값의 함수로 확장 될 수있다. 행렬 값 아날로그를 계산하는 한 가지 방법은 다음과 같습니다. 다음과 같은 두 가지 중요한 삼각 정체성을 고려하십시오. 이러한 아이덴티티를 사용하여 sin와에 대한 다음 방정식을 도출 할 수 있습니다 cos. 행렬 지수는 모든 정사각형 …

13
피보나치 제품
양의 피보나치 수의 고유 한 합계로 0보다 큰 수를 분해 할 수 있습니다. 이 질문에서 우리는 가능한 가장 큰 양의 피보나치 수 를 반복적으로 빼서이 작업을 수행합니다 . 예 : 1 = 1 2 = 2 3 = 3 4 = 3 + 1 12 = 8 + 3 + …
13 code-golf  math  sequence  fibonacci  code-golf  word  code-golf  cipher  code-golf  string  math  subsequence  code-golf  regular-expression  code-golf  brainfuck  assembly  machine-code  x86-family  code-golf  math  factorial  code-golf  math  geometry  code-golf  math  arithmetic  array-manipulation  math  number  optimization  stack  metagolf  code-golf  tips  assembly  code-golf  tips  lisp  code-golf  number-theory  path-finding  code-golf  number  sequence  generation  code-golf  math  geometry  code-golf  grid  permutations  code-golf  code-golf  graphical-output  geometry  fractal  knot-theory  code-golf  math  arithmetic  code-golf  interpreter  balanced-string  stack  brain-flak  code-golf  math  set-theory  code-golf  math  array-manipulation  code-golf  code-golf  string  natural-language  code-golf  code-golf  math  linear-algebra  matrix  code-golf  string  encode 

3
행렬 회전 정렬
다음과 같이 고유 한 숫자로 비어 있고 정렬되지 않은 유한 행렬을 정의 할 수 있습니다. N={415376}N={457136}N = \begin{Bmatrix} 4&5&7\\1&3&6 \end{Bmatrix} 다음과 같이 4 개의 매트릭스 이동을 정의 할 수 있습니다. ↑ * (위) : 열을 위로 이동 ↓ * (아래) : 열을 아래로 이동 → * (오른쪽) : 행을 오른쪽으로 …

13
연속 된 부분 행렬 계산
채팅에서 이전 두 개의 비어 아닌 정수 행렬 주어 및 B는 , 횟수 응답 A가 A와 발생 인접 가능성 중첩 행렬 에 B를 . 예 / 규칙 0. 하위 행렬이 없을 수 있습니다 A : [[3,1], [1,4]] B : [[1,4], [3,1]] 대답: 0 1. 하위 행렬은 연속적이어야합니다 A : [[1,4], …

11
이웃 수가 가장 많은 숫자 찾기
도전 주어진 숫자의 격자 (10 <= N <= 99) 인접한 4 개의 숫자의 합이 가장 큰 리턴 숫자. 그것은 숫자의 위, 아래, 오른쪽 및 왼쪽의 숫자이지만 그 자체는 아닙니다. 숫자 자체는 계산되지 않으며 네 이웃 만 계산됩니다. 모서리의 숫자는 누락 된 숫자가 0 인 것처럼 처리 해야 합니다. 나는 동점을 …

5
Bresenham의 라인 래스터 화를 통해 모든 매트릭스에 대한 매트릭스 추적
영감을받은 이 . 실제로 래스터 그래픽을 다루는 2 학년 인 Agatha Stephendale은 선형 대수 과정을 수강했습니다. 이제 그녀는 행렬을 사각형으로 상상하지만 예술적으로는 사각형에 대각선을 연결하고 그에 따라 트레이스를 계산하려고합니다. 실제로, 그녀는 정사각 행렬뿐만 아니라 모든 행렬의 트레이스를 계산하려고합니다. Agatha는 아티스트이기 때문에 좋아하는 이미지 편집기에서 선을 그리는 방법을 알고 있으며 후자는 …

6
합리적인 생성 함수의 계수 찾기
일련의 숫자를 거듭 제곱의 계수로 쓰면, 그 거듭 제곱 을 해당 순서 의 (일반) 생성 함수 (또는 Gf)라고합니다. 즉, 함수 F(x)와 일련의 정수에 a(n)대해 다음과 같은 경우 a(0) + a(1)x + a(2)x^2 + a(3)x^3 + a(4)x^4 + ... = F(x) 그런 다음 F(x)의 생성 함수입니다 a. 예를 들어, 기하학적 시리즈 …
12 code-golf  math  integer  polynomials  code-golf  math  abstract-algebra  restricted-time  code-golf  math  primes  code-golf  math  number  arithmetic  code-golf  quine  code-golf  number  sequence  code-golf  string  number  code-golf  array-manipulation  code-golf  number  code-golf  string  code-golf  arithmetic  code-golf  string  array-manipulation  rubiks-cube  code-golf  math  number  code-golf  tips  bash  code-golf  ascii-art  music  code-golf  arithmetic  code-golf  math  number  arithmetic  integer  code-golf  number  array-manipulation  code-golf  geometry  grid  set-partitions  code-golf  math  number  code-golf  combinatorics  code-golf  regular-expression  code-golf  permutations  code-golf  ascii-art  code-golf  number  array-manipulation  matrix  code-golf  kolmogorov-complexity  compile-time  cops-and-robbers  polyglot  cops-and-robbers  polyglot  code-golf  string  code-golf  string  ascii-art  matrix  animation  code-golf  ascii-art  code-golf  string  balanced-string  code-golf  integer  integer-partitions  expression-building 

9
가우스 행렬 생성
가우시안 블러 는 이미지를 부드럽게 흐리게하는 데 사용되는 방법입니다. 이미지의 픽셀과 함께 매트릭스를 만들어 매트릭스를 만드는 과정이 포함됩니다. 이 도전에서, 당신의 임무는 가우시안 블러에 사용되는 매트릭스를 구성하는 것입니다. 치수 (2 r + 1 × 2 r + 1) 의 행렬을 구성하기 위해 블러의 반경이 될 입력 r 과 표준 편차가 …
12 code-golf  math  matrix 

4
담당자를 다시 계산하십시오!
몇 달 전, 우리는 질문에 대한 찬사를받는 사람들의 명성을 높이는 것에 대한 메타 에 대해 토론했습니다 . 투표에 대한 현재 평판 시스템의 기본 사항은 다음과 같습니다. 1 공감대 U는 5 점의 가치가 있습니다. 답은 공평 u10 가치가 있습니다. 질문이나 답변 downvote d는 -2 평판이 가치가 있습니다. 새로운 시스템에 대한 여러 …

4
Pauli 행렬 곱하기
파울리 행렬은 양자 물리학에서 매우 일반적으로 표시되는 2 × 2 행렬의 집합입니다 (아니, 당신은이 문제에 대한 양자 물리학을 알 필요가 없습니다). 집합에 항등을 포함하면 네 가지 행렬은 다음과 같습니다. σ0 = σ1 = σ2 = σ3 = [1 0] [0 1] [0 -i] [1 0] [0 1] [1 0] [i …

2
수론 해석, 모듈로 n
숫자 이론 (우리의 목적을 위해) 의 문장 은 다음과 같은 일련의 기호입니다. 0그리고 '(후임자)-후속 수단 +1, 그래서0'''' = 0 + 1 + 1 + 1 + 1 = 4 +(더하기)와 *(곱하기) = (동일) (그리고 )(괄호) 논리 연산자 nand( a nand bis not (a and b)) forall (범용 정량 자) v0, …
12 code-golf  number-theory  parsing  code-golf  kolmogorov-complexity  code-golf  code-golf  array-manipulation  matrix  code-golf  array-manipulation  code-golf  string  code-challenge  graphical-output  compression  code-golf  kolmogorov-complexity  code-golf  sequence  array-manipulation  code-golf  number  base-conversion  code-golf  string  decision-problem  code-golf  string  ascii-art  code-golf  string  random  code-challenge  brainfuck  code-generation  code-golf  code-golf  quine  code-golf  interpreter  code-golf  interpreter  code-golf  array-manipulation  sorting  code-golf  halting-problem  code-golf  javascript  code-golf  algorithm  code-golf  arithmetic  code-golf  math  counting  code-golf  math  code-golf  decision-problem  radiation-hardening  code-golf  conversion  bitwise  code-golf  number  decision-problem  code-golf  string  decision-problem  code-golf  random  game  code-golf  ascii-art  graphical-output  code-golf  decision-problem  binary-tree  tree-traversal  code-challenge  array-manipulation  code-challenge  graphical-output  path-finding  test-battery  algorithm  code-golf  integer  factorial  code-golf  binary-tree  code-golf  grid  graph-theory  code-golf  regular-expression  quine  code-golf  encoding  code-golf  king-of-the-hill  javascript 

5
최소 중심화
주제와 관련이 있습니다. 목적 : 양의 정수 매트릭스 주어 출력 최소 중심 대칭 행렬 포함 M을 (이 행렬은 물론 비 - 양의 정수를 포함 할 수있다).MMMMMM 중심 대칭 행렬은 차수가 2 인 정방 행렬입니다. 즉, 두 번 회전 한 후에도 동일한 행렬이 유지됩니다. 예를 들어, 중심 대칭 행렬은 왼쪽 위 …

12
복제 된 행렬의 합
숫자 [ a 1 a 2 ... a n ] 의리스트 가 주어 지면 , Aᵢ 가 다음과 같이 정의 되는 모든 행렬 Aᵢ 의 합을 계산하십시오 ( m 은 모든 aᵢ 의 최대 값입니다 ) : 1 2 ⋯ (i-1) i (i+1) ⋯ n +---------------------------- 1 | 0 0 …

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.