Statistik
All
RANG
191.638
of 295.448
REPUTATION
0
BEITRÄGE
0 Fragen
1 Antwort
ANTWORTZUSTIMMUNG
0.00%
ERHALTENE STIMMEN
0
RANG
10.970 of 20.227
REPUTATION
46
DURCHSCHNITTLICHE BEWERTUNG
5.00
BEITRÄGE
1 Datei
DOWNLOADS
2
ALL TIME DOWNLOADS
417
BEITRÄGE
0 Beiträge
BEITRÄGE
0 Öffentlich Kanäle
DURCHSCHNITTLICHE BEWERTUNG
BEITRÄGE
0 Highlights
DURCHSCHNITTLICHE ANZAHL DER LIKES
Feeds
Beantwortet
How to add trendline to scatterplot?
x = [2 1 4 8 4 5] y = [5 4 2 53 21 50] p = polyfit(x, y, 1); px = [min(x) max(x)]; py = polyval(p, px); scatter(x, y, 'fil...
How to add trendline to scatterplot?
x = [2 1 4 8 4 5] y = [5 4 2 53 21 50] p = polyfit(x, y, 1); px = [min(x) max(x)]; py = polyval(p, px); scatter(x, y, 'fil...
8 Monate vor | 0
Gelöst
Determine whether a vector is monotonically increasing
Return true if the elements of the input vector increase monotonically (i.e. each element is larger than the previous). Return f...
etwa 4 Jahre vor
Gelöst
Find all elements less than 0 or greater than 10 and replace them with NaN
Given an input vector x, find all elements of x less than 0 or greater than 10 and replace them with NaN. Example: Input ...
etwa 4 Jahre vor
Gesendet
Karhunen-Loeve Transform Demonstration for Image Compressing
Karhunen-Loeve Transform (KLT) principles demonstration.
etwa 6 Jahre vor | 2 Downloads |
Gelöst
Select every other element of a vector
Write a function which returns every other element of the vector passed in. That is, it returns the all odd-numbered elements, s...
etwa 6 Jahre vor
Gelöst
Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...
etwa 6 Jahre vor
Gelöst
Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...
etwa 6 Jahre vor