Community Profile

photo

Yokesh


2019년부터 활동

Followers: 0   Following: 0

연락

Masters in Aerospace Engineering

통계

  • Revival Level 1
  • First Answer

배지 보기

Feeds

보기 기준

답변 있음
To find the maximum value in a matrix?
If matrix dimension is 'n', then max element can be found by: max(max(.....maxn^2((A))...) We have to include n^2 times max

거의 5년 전 | 1

답변 있음
solving eigenvalue problem AX=c BX
warning off MATLAB:nearlySingularMatrix A = rand(500,500); B = rand(500,500); Eig = eigs(A,B,5,'li'); %Outputs 5 Eigenva...

거의 5년 전 | 0

답변 있음
How can I speed up assignments to sparse matrices in MATLAB?
% Creating elements for a sparse matrix % We need to create a column vector for each i,j,v % where A(i,j) = v i = randi(100...

거의 5년 전 | 1

답변 있음
How to add elements to a sparse matrix
%Create a random 10 x 10 sparse matrix X = sprand(10,10,0.2); %For adding elements to an existing Sparse matrix X(2,2) = 0....

대략 5년 전 | 1