Resuelto


Calculate using 'for' statements
Equations are easily calculated using matlab. Especially, when we calculate multivariable(more than two) variables, "meshgrid" f...

casi 10 años hace

Resuelto


Make random number between a and b
Function rand make arbitrary number between 0 and 1. Using inputs, a, and b, make random number between given two values.

casi 10 años hace

Resuelto


Make sorting matrix without sort function.
It is very valuable for student to simple sorting program because they learn about use of loop and if-statement. Sort given inpu...

casi 10 años hace

Resuelto


Calculate geostrophic current
eta0=0.01; R=300; f=0.01; g=9.81; x=-500:50:500; y=-500:50:500; [x y]=meshgrid(x,y); eta=eta0*exp(-(x.^2+...

casi 10 años hace

Resuelto


Ceil Me Now
Get the ceiling of the input matrix

casi 10 años hace

Resuelto


Find my daddy long leg (No 's')
Given the ratio of the two legs,and the hypotenuse, find the value of the bigger leg

casi 10 años hace

Resuelto


Calculate RMSE
RMSE(Root Mean Square Error) is widely used to calculate error. Calculate RMSE between [a] and [b] a=[1 2 3 4] b=[0 1 2 ...

casi 10 años hace

Resuelto


Create square matrix filled with ones.
Create square matrix filled with ones, of size x. Example [1 1; 1 1]

casi 10 años hace

Resuelto


Basic commands - Left division matrix
Please write a function which will left division of A,B Pay attention this is right division: A/B

casi 10 años hace

Resuelto


Basic commands - logarithmically spaced vector
Make a function, which will give a vector: y=[ 0.01 0.1 1 10 ... 10^x];

casi 10 años hace

Resuelto


how to find diagonal elements of a matrix?
how to find diagonal elements of a matrix?

casi 10 años hace

Resuelto


How to find average of each column ?
How to find average of each column for a given matrix?

casi 10 años hace

Resuelto


How find maximum element of a column in matrix?
How find maximum element of a column in matrix?

casi 10 años hace

Resuelto


How find minimum element of a column in matrix?
How find minimum element of a column in matrix?

casi 10 años hace

Resuelto


How find sum of elements of each column in matrix?
How find sum of elements of each column in matrix?

casi 10 años hace

Resuelto


how to find characteristic polynomial of a given matrix?
how to find characteristic polynomial of a given matrix?

casi 10 años hace

Resuelto


HOW TO FIND SINGULAR VALUE OF A MATRIX?
HOW TO FIND SINGULAR VALUE OF A MATRIX?

casi 10 años hace

Resuelto


Create square matrix filled with equal numbers.
Create square matrix filled with equal numbers; n - size,x - given number .Example x=2,n=2 [2 2 ; 2 2]

casi 10 años hace

Resuelto


Check given number is odd or even
Using input [x], check given number is odd or even if x is odd, output should be true.

casi 10 años hace

Resuelto


Super Basic - 3 + true equals ??
Solve the title

casi 10 años hace

Resuelto


Get 1-4-3-4-4
Get the value of the indices in the title and assign it to an array

casi 10 años hace

Resuelto


Sum of Optimus
Get the sum of primes :)

casi 10 años hace

Resuelto


Set number x for diagonal of square matrix, which size is n.
Set number x for diagonal of square matrix, other values should be equlal 0, which size is n. Example n=2, x=4: [4 0; 0 4]

casi 10 años hace

Resuelto


how to round off a given number containing decimals?
how to round off a given number containing decimals?

casi 10 años hace

Resuelto


product of given two numbers?
product of given two numbers?

casi 10 años hace

Resuelto


Basic commands - Excuse me, what time is it?
Please write a function, which will return current hours and minutes, please notice we are using 24h time. Return a vector li...

casi 10 años hace

Resuelto


Prime number removal
remove all prime numbers from the input e.g. input = 1 2 3 4 5 6 7 8 9 10 11 12 ...

casi 10 años hace

Resuelto


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

casi 10 años hace

Resuelto


Calculating cost
You sold a Product at $x and gain 10% What was the cost of the product?

casi 10 años hace

Resuelto


Find the qube of a give number.
You are given a number, find the qube of that number.

casi 10 años hace

Cargar más