Decide whether determinant is zero.
Given a 3 x 3 matrix, find the determinant. Let y = true if the determinant is zero, and let y = false if the determinant is no...
5年以上 前
解決済み
Is it prime?
Given a number, check whether it is prime or not.
If prime output is true, otherwise false.
Perimeters/Circumference
Given an array. Determine whether the perimeter is of a circle, triangle or square. Then calculate the perimeter.
5年以上 前
解決済み
Try and Catch Simple Example
Try and Catch Simple Example
<http://in.mathworks.com/help/matlab/ref/try.html Example>
Vector x=[1 4 6 8 10];
Create...
5年以上 前
解決済み
Make a Star Pyramid
Create a star pyramid. First line will have 1 star, second will have two stars and so on... a basic program which is easily done...
5年以上 前
解決済み
Feeling lucky?
Guess which number Cody is thinking (1 to 10)?
(This is a game of luck more than skill. Good luck!)
5年以上 前
解決済み
MPS to MPH
Given the speed in miles per second, find the speed in miles per hour.
Create logarithmically spaced values (★)
Given three numbers a,b,n with b>a, create a vector y with n logarithmic spaced values between 10^a and 10^b.
Thus, if a = -2, ...