Tri Dang
Followers: 0 Following: 0
Statistics
7 Questions
0 Answers
RANK
85,198
of 295,467
REPUTATION
0
CONTRIBUTIONS
7 Questions
0 Answers
ANSWER ACCEPTANCE
42.86%
VOTES RECEIVED
0
RANK
of 20,234
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 153,912
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
Feeds
Question
Can you help me with this loop?
Instead using sprintf (which autograde wont give me point), how to use string concatenation to generate the message? Can you gi...
3 years ago | 1 answer | 0
1
answerQuestion
Can someone help me with this function assignment
I can't run this function (also autograde can't detect it and bypass, I got 0) Do I need to change to name of the file to match...
3 years ago | 1 answer | 0
1
answerQuestion
Can you help me with the while loop?
I want in min years to make a final value to increase (but not exceeding 3 time the investment) The code doesn't work Can som...
3 years ago | 1 answer | 0
1
answerQuestion
I need help with for/while loop.
I want to calculate anual compound of an investment using for loop, lets call its P is a final value. I have 3 variables P0 the...
3 years ago | 0 answers | 0
0
answersQuestion
Simple for Loop calculation help MATLAB!
Matlab I want to calculate anual compound of an investment using for loop, lets call its P is a final value. I have 3 variable...
3 years ago | 1 answer | 0
1
answerQuestion
Can someone explain this Loop?
num = 0; L= randperm(10); for k = L while L(k)<4 num = num + 1; L(k) = L(k)+1; end end num = 6 is the ans...
3 years ago | 1 answer | 0
1
answerQuestion
Can someone explain this loop?
A = [0 1.7 2; 3 4 8; 4.2 3 8]; numEven = 0; for k = 1:numel(A) if mod(A(k),2) == 0 numEven = numEven+1; en...
3 years ago | 1 answer | 0