photo

Yokesh


Active since 2019

Followers: 0   Following: 0

Message

Masters in Aerospace Engineering

Statistics

MATLAB Answers

0 Questions
4 Answers

RANK
7,648
of 298,339

REPUTATION
6

CONTRIBUTIONS
0 Questions
4 Answers

ANSWER ACCEPTANCE
0.00%

VOTES RECEIVED
3

RANK
 of 20,567

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK

of 160,865

CONTRIBUTIONS
0 Problems
0 Solutions

SCORE
0

NUMBER OF BADGES
0

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • Revival Level 1
  • First Answer

View badges

Feeds

View by

Answered
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

6 years ago | 1

Answered
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...

6 years ago | 0

Answered
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...

6 years ago | 1

Answered
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....

6 years ago | 1