Derivative of polynomial
Compute the derivative of a given polynomial. The input is an <http://www.mathworks.com/help/matlab/math/representing-polynomial...
9年弱 前
解決済み
Remove the positive integers.
Given array,x, remove all the positive numbers and display ouput as y.
Example x=[1 -2 3 -4] , output is y=[-2 -4].
9年弱 前
解決済み
Max index of 3D array
Given a three dimensional array M(m,n,p) write a code that finds the three coordinates x,y,z of the Maximum value.
Example ...
Speed of car
Calculate the Speed of car given its Distance travelled and time taken in x and y respectively
9年弱 前
解決済み
UICBioE240 2.3
Make a 4D matrix of 4x4x3x4 containing all zeros.
9年弱 前
解決済み
UICBioE240 problem 1.1
Remove the middle row from a matrix, assuming # of rows is odd.
So if
A = [ 1 2 3;
4 5 6;
7 8 9]
the...
9年弱 前
解決済み
UICBioE240 problem 1.8
Given a list of grades in a class, write a script that gives the 2nd highest grade in the class and the average for the class.
...
9年弱 前
解決済み
Matrix FUN
Given a Matrix M, find out the number of elements of matrix that are divisible by 3.
M = [1 2 3;4 5 6;7 8 9];
ou...