필터 지우기
필터 지우기

Manipulate Matrix Element using subscripts (ex: isprime(i-j)) or (i+j)>10)

조회 수: 1 (최근 30일)
I need to create a oneline command to set a 'n x n' matrix to {1 if i-j isprime, 0 if not). I don't remember how to select an element in this manor. Thank you.

채택된 답변

Fangjun Jiang
Fangjun Jiang 2011년 11월 22일
n=10;
A=zeros(n);
A(isprime(abs(bsxfun(@minus,(1:n)',1:n))))=1

추가 답변 (1개)

Andrei Bobrov
Andrei Bobrov 2011년 11월 22일
n = 10
out = bsxfun(@(x,y)isprime(abs(x-y)),1:n,(1:n)')

카테고리

Help CenterFile Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by