Mann-Kendall Correlation
Write a function that returns the <http://en.wikipedia.org/wiki/Kendall_tau_rank_correlation_coefficient Mann-Kendall> correlati...
3 years 前
已解决
Solve a System of Linear Equations
*Example*:
If a system of linear equations in _x₁_ and _x₂_ is:
2 _x₁_ + _x₂_ = 2
_x₁...
Replace all odd numbers with NaN
Replace all odd numbers in the vector or matrix with NaN. For example, if
x = [1 3 4 5 8 11];
then return
y = [NaN Na...
Transpose the Matrix
Transpose the given matrix, e.g. x=[a b;c d]
transpose of x = [a c;b d]
4 years 前
已解决
Calculate Resistance 2
In this problem, you have to calculate Resistance R of a linear conductor having voltage V across it and current I is passing i...