解決済み


Times 5
Try out this test problem first. Given the variable x as your input, multiply it by five and put the result in y. Examples...

7日 前

解決済み


divide by 5

7日 前

解決済み


Check if number is a square number
Test if integer i is a square number. Return logical true if it is.

7日 前

解決済み


ascii value
let input='a' output=97

7日 前

解決済み


Calculate distance travelled when given radius and rotations
When given radius of wheel and number of rotations calculate total distance travelled consider pi=3.14

7日 前

解決済み


Find the nearest integer
Given a vector of integers and a real number find the closest integer. EX: >> a = [2 4 5 6 8 10]; >> b = 4.6; >> nea...

7日 前

解決済み


Change the first and last diagonal element of the identity matrix to zero
Starting with the identity matrix, change first and last diagonal element to zero. Example If n=5 A = 0 0 ...

7日 前

解決済み


Find remainder when x is divided by 3
Find remainder when x is divided by 3

7日 前

解決済み


Logarithmically spaced vector creation using logspace
Create a vector y containing n logarithmically spaced values between a and b, with a < b. Use the logspace operator.

7日 前

解決済み


Variance computation (★)
Given a vector x with several values, compute the variance, whose formula is given by: <<https://i.imgur.com/Wg95KBE.gif>> ...

7日 前

解決済み


Find the last digit
FInd the last digit of a given number. Given number is the input and output should be the last digit of that number.

7日 前

解決済み


Find minimum and maximum elements of an array
For a given array find minimum and maximum elements of an array and store minimum value in first index of output and maximum in ...

7日 前

解決済み


Calculate Simple Intrest for given data
P,N,R stands for Principle amount, No. of years and rate of intrest resp. Calculate intrest I

7日 前

解決済み


Step up
For given input array, output a array with all elements step up by two

7日 前

解決済み


Integer or Float?
Test an input to see whether it is an integer or a floating point number. If it is an integer return 1 for 'true'. Otherwise ret...

7日 前

解決済み


Is it prime?
Given a number, check whether it is prime or not. If prime output is true, otherwise false.

7日 前

解決済み


Halder function
Find the halder function value of a number

7日 前

解決済み


multiply an array by its position number
You have given an array. Multiply an array by its position number

7日 前

解決済み


Saving MATLAB session to a file
How to save MATLAB session to a file?

7日 前

解決済み


Close MATLAB with keyboard
Close MATLAB with keyboard without using mouse

7日 前

解決済み


Create an anti-identity matrix
Create an anti-identity matrix of given dimension. Examples n = 2 A = [0 1; 1 0] n = 3 A = [0 0 1; 0 1 0; 1 0 0...

7日 前

解決済み


Matrix of almost all zeros, except for main diagonal
Write a program to input an integer n and build a n-by-n matrix with the numbers 1,2,...,n on the main diagonal and zeros elsewh...

7日 前

解決済み


Determine whether the input is divisible by 3 as well as 5
If the input is divisible by 3 as well as 5 then the output should be 'true' otherwise 'false'

7日 前

解決済み


find a specific element from an matrix
Find the element from matrix which is in 2nd row and 3rd column.

7日 前

解決済み


Calculating selling price
Cost of a Product is $x What should be the selling price if you want to gain 10%?

7日 前

解決済み


find the mean of all elements in a matrix
given a matrix, just find the mean of all elements in the matrix

7日 前

解決済み


Approximate functions 1 (★★★)
Compute the following sum for any given x and positive integer n. <<https://i.imgur.com/eUwXdSE.gif>> <> Here m! denote...

7日 前

解決済み


Swap the first and last columns (★★)
(copy of Prob 19) Flip the outermost columns of matrix A, so that the first column becomes the last and the last column becom...

7日 前

解決済み


Generate n equally spaced "intervals" between -x and x (★)
Given n and x, return a list of numbers (in ascending order) that divides the interval [-x x] into n equal-length intervals. ...

7日 前

解決済み


Create a vector of n alternating ones and zeros (★★)
Given n, your output should be a vector y of numbers such that the first number is 1 and the numbers following it alternate betw...

7日 前

さらに読み込む