photo

Aramis


Last seen: 4 Monate vor Aktiv seit 2024

Followers: 0   Following: 0

Statistik

MATLAB Answers

0 Fragen
6 Antworten

RANG
12.737
of 300.321

REPUTATION
4

BEITRÄGE
0 Fragen
6 Antworten

ANTWORTZUSTIMMUNG
0.00%

ERHALTENE STIMMEN
3

RANG
 of 20.913

REPUTATION
N/A

DURCHSCHNITTLICHE BEWERTUNG
0.00

BEITRÄGE
0 Dateien

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANG

of 168.093

BEITRÄGE
0 Probleme
0 Lösungen

PUNKTESTAND
0

ANZAHL DER ABZEICHEN
0

BEITRÄGE
0 Beiträge

BEITRÄGE
0 Öffentlich Kanäle

DURCHSCHNITTLICHE BEWERTUNG

BEITRÄGE
0 Highlights

DURCHSCHNITTLICHE ANZAHL DER LIKES

  • First Answer

Abzeichen anzeigen

Feeds

Anzeigen nach

Beantwortet
how to find the element which is greater than or equal to its row and smaller or equal to its column in a matrix
The best solution function s = saddle(M) % Create logical vector that are true for each saddle condition separately m...

mehr als ein Jahr vor | 0

Beantwortet
Sparse Matrix, struct, structure, Using cell arrays
function matrix = sparse2matrix(cellvec) matrix = ones(cellvec{1}) * cellvec{2}; for x=3:length(cellvec) matr...

mehr als ein Jahr vor | 0

Beantwortet
next prime number using While loops
THE BEST ANSWER function k = next_prime(n) k=n; while isprime(k)==false || k==n k = k+1; end end ...

mehr als ein Jahr vor | 0

Beantwortet
Write a function called valid_date that takes three positive integer scalar inputs year, month, day. If these three represent a valid date, return a logical true, otherwise false. The name of the output argument is valid.
The best answer function valid = valid_date(year,month,day) if not(isscalar(year))|| not(isscalar(month)) || not(isscalar(...

mehr als ein Jahr vor | 1

Beantwortet
Write a function called eligible that helps the admission officer of the Graduate School decide whether the applicant is eligible for admission based on GRE scores. The function takes two positive scalars called v and q as in
This is the BEST FCKN ANSWER function admit = eligible(v, q) admit = mean([v q]) >= 92 && min([v q]) > 88; end

mehr als ein Jahr vor | 2