已解决


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

8 years 前

已解决


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]

8 years 前

已解决


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]

8 years 前

已解决


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

8 years 前

已解决


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

8 years 前

已解决


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

8 years 前

已解决


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

8 years 前

已解决


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

8 years 前

已解决


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

8 years 前

已解决


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

8 years 前

已解决


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

8 years 前

已解决


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

8 years 前

已解决


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

8 years 前

已解决


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

8 years 前

已解决


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

8 years 前

已解决


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?

8 years 前

已解决


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

8 years 前

已解决


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

8 years 前

已解决


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

8 years 前

已解决


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

8 years 前

已解决


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

8 years 前

已解决


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

8 years 前

已解决


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

8 years 前

已解决


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

8 years 前

已解决


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

8 years 前

已解决


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.

8 years 前

已解决


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

8 years 前

已解决


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

8 years 前

已解决


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

8 years 前

已解决


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

8 years 前

加载更多