Community Profile

photo

Avantika Vijay Bharati


Last seen: 11 meses hace Con actividad desde 2022

Followers: 0   Following: 0

Estadísticas

All
  • Community Group Solver
  • Solver

Ver insignias

Feeds

Ver por

Resuelto


Create a vector whose elements depend on the previous element
The idea is to create a vector A whose elements depend on the previous element : *A(i+1) = 2*A(i)+1* *2 Inputs*: - A : The...

11 meses hace

Resuelto


Create an n-by-n null matrix and fill with ones certain positions
The positions will be indicated by a z-by-2 matrix. Each row in this z-by-2 matrix will have the row and column in which a 1 has...

11 meses hace

Resuelto


Find nth maximum
Find nth maximum in a vector of integer numbers. Return NaN if no such number exists. x = [2 6 4 9 -10 3 1 5 -10]; So ...

11 meses hace

Resuelto


Create an index-powered vector
Given a input vector x, return y as index-powered vector as shown below. Example x = [2 3 6 9] then y should be [...

11 meses hace

Resuelto


Oh Zero Zero Zero!!!
Hello all, So you have to find the largest section of zeros in a vector and then find the length of those zeros and there start...

11 meses hace

Resuelto


Find last zero for each column
Given a numeric array of arbitrary size, return the row index of the last zero for each column. If a column contains all nonzero...

11 meses hace

Resuelto


Calculate the Number of Sign Changes in a Row Vector (No Element Is Zero)
For a row vector: V=[7 1 2 -3] there is one sign change (from 2 to -3). So, the function you write must return N=1. F...

11 meses hace

Resuelto


Symmetry of vector
Determine whether the vector is symmetric or not (vector could be even or odd in length). For example: x = [1 2 3 3 2 1] is s...

11 meses hace

Resuelto


Getting the indices from a vector
This is a basic MATLAB operation. It is for instructional purposes. --- You may already know how to <http://www.mathworks....

11 meses hace

Resuelto


Draw a '5' in a zero matrix!

11 meses hace

Resuelto


Find x rows where the sum of the numbers is the maximum
Find x rows where the sum of the numbers is the maximum. For example: when x is 2 and m is 2 3 5 0 2 3 5 5 6 0 9 4 then y =...

11 meses hace

Resuelto


Draw a '1' in a zero matrix!

11 meses hace

Resuelto


Rotate Matrix @180 degree
Rotate Matrix @180 degree Example A=[8 1 6; 3 5 7; 4 9 2], then answer would be [2 9 4;...

11 meses hace

Resuelto


Converts numbers into characters
Converts numbers into characters

11 meses hace

Resuelto


Find the max element of the array
Find the max element of the array

11 meses hace

Resuelto


Square root
Given x (a matrix), give back another matrix, where all the elements are the square roots of x's elements.

11 meses hace

Resuelto


Calculate the average value of the elements in the array
Calculate the average value of the elements in the array

11 meses hace

Resuelto


to the 2 all elements
to the 2 all elements

11 meses hace

Resuelto


the average value of the elements
Calculate the average value of the elements in the array

11 meses hace

Resuelto


Double all elements in the array
Duplicate all elements in the array

11 meses hace

Resuelto


calculate the length of matrix
input 1 array, calculate the length

11 meses hace

Resuelto


Draw a '0' in a one matrix!

11 meses hace

Resuelto


Find Logic 20

11 meses hace

Resuelto


Vector creation
Create a vector using square brackets going from 1 to the given value x in steps on 1. Hint: use increment.

11 meses hace

Resuelto


Doubling elements in a vector
Given the vector A, return B in which all numbers in A are doubling. So for: A = [ 1 5 8 ] then B = [ 1 1 5 ...

11 meses hace

Resuelto


Create a vector
Create a vector from 0 to n by intervals of 2.

11 meses hace

Resuelto


Flip the vector from right to left
Flip the vector from right to left. Examples x=[1:5], then y=[5 4 3 2 1] x=[1 4 6], then y=[6 4 1]; Request not ...

11 meses hace

Resuelto


Whether the input is vector?
Given the input x, return 1 if x is vector or else 0.

11 meses hace

Resuelto


Find max
Find the maximum value of a given vector or matrix.

11 meses hace

Resuelto


Get the length of a given vector
Given a vector x, the output y should equal the length of x.

11 meses hace

Cargar más