
Meltem Uyanik
Followers: 0 Following: 0
Statistics
RANK
N/A
of 297,503
REPUTATION
N/A
CONTRIBUTIONS
0 Questions
0 Answers
ANSWER ACCEPTANCE
0.00%
VOTES RECEIVED
0
RANK
of 20,449
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
Solved
creating matrix of replicated elements
Given an input element a, and the dimensions, (m, n) return a matrix of size m-by-n filled with element a.
8 years ago
Problem
creating matrix of replicated elements
Given an input element a, and the dimensions, (m, n) return a matrix of size m-by-n filled with element a.
8 years ago | 0 | 2 solvers
Problem
matrix to vector
For given a matrix of any size, convert it into a column vector.
8 years ago | 0 | 1 solver
Problem
vectors counting by 5
Create a vector with numbers from x_min to x_max in increments of 5.
8 years ago | 0 | 114 solvers
Solved
Find out of matrix transpose Complex conjugate
Find out of matrix transpose Complex conjugate A=[2 3+i;1 4+i] Then answer must be [2.0000 1.0000; ...
8 years ago
Solved
Change matrix to vector
Vector is a matrix whose size is 1 x n or n x 1. Change matrix to vector. x = 4 3 5 1 ...
8 years ago
Solved
Create matrix of replicated elements
Given an input element x, and the dimensions, (m, n) return a matrix of size m x n filled with element x. Example: Input: ...
8 years ago
Solved
Matrix to column conversion
Given a matrix of any size, convert it into a column vector. e.g A=[10 20 30; 40 50 60] then, B = [10; 40; ...
8 years ago
Problem
row removal
Remove the nth row from input matrix M and return the resulting matrix in output N.
8 years ago | 0 | 114 solvers
Solved
Roots
Find out the roots of a given polynomial equation.Given are the coefficients of the equation.
8 years ago
Solved
Beginner's Problem - Squaring
Try out this test problem first. Given the variable x as your input, square it by two and put the result in y. Examples: ...
8 years ago
Solved
Maximum value in a matrix
Find the maximum value in the given matrix. For example, if A = [1 2 3; 4 7 8; 0 9 1]; then the answer is 9.
8 years ago
Solved
Column Removal
Remove the nth column from input matrix A and return the resulting matrix in output B. So if A = [1 2 3; 4 5 6]; and ...
8 years ago
Problem
extract the fifth through the last elements
For any vector x, write a function that extracts the fifth through the last elements.
8 years ago | 0 | 6 solvers
Solved
Matlab Basics II - Extract last 3 elements of a vector
Let x be a vector of unknown length, we are always interested in the last 3 numbers in the vector, write a function that gives t...
8 years ago
Problem
counting down
Create a vector that counts from 1000 to 400 in increments of 50.
8 years ago | 0 | 4 solvers
Problem
perimeter of a circle
Given the radius x, y would be the perimeter of a circle.
8 years ago | 0 | 2 solvers
Problem
the size of matrix
Given a matrix A, the output y should equal the size of A.
8 years ago | 0 | 0 solvers
Problem
transpose of matrix
Given a vector x, the output y should equal the transpose of x.
8 years ago | 0 | 4 solvers
Problem
the length of a given vector
Given a vector x, the output y should equal the length of x.
8 years ago | 0 | 4 solvers
Solved
Get the length of a given vector
Given a vector x, the output y should equal the length of x.
8 years ago