photo

Asemahle Ndamase


Active since 2019

Followers: 0   Following: 0

Statistics

MATLAB Answers

3 Questions
0 Answers

RANK
87,404
of 300,871

REPUTATION
0

CONTRIBUTIONS
3 Questions
0 Answers

ANSWER ACCEPTANCE
33.33%

VOTES RECEIVED
0

RANK
 of 21,100

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK

of 171,460

CONTRIBUTIONS
0 Problems
0 Solutions

SCORE
0

NUMBER OF BADGES
0

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Discussions

AVERAGE NO. OF LIKES

  • Thankful Level 1

View badges

Feeds

View by

Question


What is the running time of the algorithm
I have this code: n = length(V); S = zeros(n,2*n); for i = 1:n for j = 2:i for k = 1:n S(i,j+k...

7 years ago | 1 answer | 0

1

answer

Question


How do I test a vector element by element for imaginary elements
Here is the the vector i Have r = -1.6659 + 0.0000i -0.3049 + 1.1564i -0.3049 - 1.1564i 1.1378 + 0.3231i 1....

7 years ago | 1 answer | 0

1

answer

Question


I am trying to write a matlab function that that takes a matrix as input and test if that matrix is a square(using a sub-function) and if it is a square it must test if it meets a certain condition. Here is my code
function [a,b] = matr(A) [a,b]=size(A) d=diag(A) S=sum(d==0) Results = tests(a,b) if S>0.5*length(d) RT1=1 disp(...

7 years ago | 0 answers | 0

0

answers