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


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


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


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


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


How to Concatenate two strings?
How to Concatenate two strings?

casi 10 años hace

Resuelto


how to convert given text into all upper case letters?
how to convert given text into all upper case letters?

casi 10 años hace

Resuelto


How to devide each element of matrix a with matrix b of same size?
How to devide each element of matrix a with matrix b of same size?

casi 10 años hace

Resuelto


Persistence will help you solve almost any problem (slightly harder version).
Create a function without inputs that adds one to the output every time it is called. One possibility of solving this has been e...

casi 10 años hace

Resuelto


Persistence will not help you solve this problem.
Create a function without inputs that adds one to the output every time it is called. A different possibility of solving this ha...

casi 10 años hace

Resuelto


Persistence will not help you solve this problem.
Create a function without inputs that adds one to the output every time it is called. A different possibility of solving this ha...

casi 10 años hace

Resuelto


Persistence will not help you solve this problem.
Create a function without inputs that adds one to the output every time it is called. A different possibility of solving this ha...

casi 10 años hace

Resuelto


Persistence will not help you solve this problem.
Create a function without inputs that adds one to the output every time it is called. A different possibility of solving this ha...

casi 10 años hace

Resuelto


Persistence will not help you solve this problem.
Create a function without inputs that adds one to the output every time it is called. A different possibility of solving this ha...

casi 10 años hace

Resuelto


Persistence will not help you solve this problem.
Create a function without inputs that adds one to the output every time it is called. A different possibility of solving this ha...

casi 10 años hace

Resuelto


Persistence will not help you solve this problem.
Create a function without inputs that adds one to the output every time it is called. A different possibility of solving this ha...

casi 10 años hace

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 roundn function
Make roundn function. x=0.55555 y=function(x,1) y=1 y=function(x,2) y=0.6 y=function(x,3) y=0.56 ...

casi 10 años hace

Resuelto


Replace x value into y value in string text.
Replace x value into y value in string text. Example text='Hello World' x='World', y='Universe' result='Hello Universe'.

casi 10 años hace

Resuelto


Weighted moving average
x1=[1 2 1]; y1=[1 2 2 4 5 6 6 8]; Make function for weighted moving average. z(i)=(x1(i)*y1(i)+x1(i+1)*y1(i+1)+x1(i+2)*y1...

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

Cargar más