Statistica
MATLAB Answers
0 Domande
5 Risposte
RANK
98.642
of 301.930
REPUTAZIONE
0
CONTRIBUTI
0 Domande
5 Risposte
ACCETTAZIONE DELLE RISPOSTE
0.00%
VOTI RICEVUTI
0
RANK
of 177.468
CONTRIBUTI
0 Problemi
0 Soluzioni
PUNTEGGIO
0
NUMERO DI BADGE
0
CONTRIBUTI
0 Post
CONTRIBUTI
0 Pubblico Canali
VALUTAZIONE MEDIA
CONTRIBUTI
0 Punti principali
NUMERO MEDIO DI LIKE
Feeds
Risposto
How many positive entries in array
function count = positiveEntries(arr) count = sum(arr > 0); end
How many positive entries in array
function count = positiveEntries(arr) count = sum(arr > 0); end
8 giorni fa | 0
Risposto
how do i reverse a vector
v = [1 2 3 4 5]; reversed = flip(v); disp(reversed);
how do i reverse a vector
v = [1 2 3 4 5]; reversed = flip(v); disp(reversed);
8 giorni fa | 0
Risposto
how to sum all elements of one vector?
v = [1 2 3 4 5]; total = sum(v); disp(total);
how to sum all elements of one vector?
v = [1 2 3 4 5]; total = sum(v); disp(total);
8 giorni fa | 0
Risposto
Write a function to calculate the area of a circle
function area = circleArea(radius) area = pi * radius^2; end
Write a function to calculate the area of a circle
function area = circleArea(radius) area = pi * radius^2; end
8 giorni fa | 0
Risposto
Write a MATLAB function that returns the square of a number.
function sqr=sqr(x) sqr=x^2; end
Write a MATLAB function that returns the square of a number.
function sqr=sqr(x) sqr=x^2; end
8 giorni fa | 0
