解決済み


Reverse the vector
Reverse the vector elements. Example: Input x = [1,2,3,4,5,6,7,8,9] Output y = [9,8,7,6,5,4,3,2,1]

14年弱 前

解決済み


Weighted average
Given two lists of numbers, determine the weighted average. Example [1 2 3] and [10 15 20] should result in 33.333...

14年弱 前

解決済み


Triangle Numbers
Triangle numbers are the sums of successive integers. So 6 is a triangle number because 6 = 1 + 2 + 3 which can be displa...

14年弱 前

解決済み


Determine if input is odd
Given the input n, return true if n is odd or false if n is even.

14年弱 前

解決済み


Column Removal
Remove the nth column from input matrix A and return the resulting matrix in output B. So if A = [1 2 3; 4 5 6]; and ...

14年弱 前

解決済み


Remove the vowels
Remove all the vowels in the given phrase. Example: Input s1 = 'Jack and Jill went up the hill' Output s2 is 'Jck nd Jll wn...

14年弱 前

解決済み


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...

14年弱 前

解決済み


Remove any row in which a NaN appears
Given the matrix A, return B in which all the rows that have one or more <http://www.mathworks.com/help/techdoc/ref/nan.html NaN...

14年弱 前

解決済み


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...

14年弱 前

解決済み


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 ...

14年弱 前

解決済み


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...

14年弱 前

解決済み


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

14年弱 前

送信済み


lscatter : scatter plot with labels instead of markers
Similar to ML's scatter command, but allows you to use separate labels for each point.

15年以上 前 | ダウンロード 1 件 |

5.0 / 5
Thumbnail

送信済み


Gini coefficient and the Lorentz curve
Computes the Gini coefficient and the Lorentz curve of weighted data.

15年以上 前 | ダウンロード 5 件 |

5.0 / 5
Thumbnail

送信済み


WHO for a given CLASS
Displays a list of variables in the base workspace of a given class.

15年以上 前 | ダウンロード 1 件 |

0.0 / 5

送信済み


XLSrange
The function returns the range address as used by Excel. It is useful in connection with XLSWRITE.

15年以上 前 | ダウンロード 1 件 |

0.0 / 5

送信済み


Log of factorial of large numbers
computes log10 of the factorial

18年以上 前 | ダウンロード 1 件 |

5.0 / 5

送信済み


Factorial of large numbers
computes factorials of large arguments using standard algorithm

18年以上 前 | ダウンロード 1 件 |

3.33333 / 5