photo

Dimitri MANKOV


Last seen: 1 giorno fa Attivo dal 2020

Followers: 1   Following: 0

Statistica

All
MATLAB Answers

0 Domande
134 Risposte

Cody

0 Problemi
80 Soluzioni

RANK
341
of 298.594

REPUTAZIONE
242

CONTRIBUTI
0 Domande
134 Risposte

ACCETTAZIONE DELLE RISPOSTE
0.00%

VOTI RICEVUTI
22

RANK
 of 20.621

REPUTAZIONE
N/A

VALUTAZIONE MEDIA
0.00

CONTRIBUTI
0 File

DOWNLOAD
0

ALL TIME DOWNLOAD
0

RANK
3.143
of 161.780

CONTRIBUTI
0 Problemi
80 Soluzioni

PUNTEGGIO
1.105

NUMERO DI BADGE
8

CONTRIBUTI
0 Post

CONTRIBUTI
0 Pubblico Canali

VALUTAZIONE MEDIA

CONTRIBUTI
0 Punti principali

NUMERO MEDIO DI LIKE

  • 36 Month Streak
  • Speed Demon
  • Promoter
  • Community Group Solver
  • CUP Challenge Master
  • Introduction to MATLAB Master
  • Knowledgeable Level 4
  • First Review
  • Revival Level 3
  • MATLAB Central Treasure Hunt Finisher
  • Solver
  • First Answer

Visualizza badge

Feeds

Visto da

Risolto


Is my wife right?
Regardless of input, output the string 'yes'.

circa un mese fa

Risolto


Verify Law of Large Numbers
If a large number of fair N-sided dice are rolled, the average of the simulated rolls is likely to be close to the mean of 1,2,....

7 mesi fa

Risolto


Solve a System of Linear Equations
Example: If a system of linear equations in x₁ and x₂ is: 2x₁ + x₂ = 2 x₁ - 4 x₂ = 3 Then the coefficient matrix (A) is: 2 ...

7 mesi fa

Risolto


De-dupe
Remove all the redundant elements in a vector, but keep the first occurrence of each value in its original location. So if a =...

quasi 2 anni fa

Risolto


intersection of matrices
Given two matrices filled with ones and zeros, determine if they share a common row, column entry. These matrices are of identic...

quasi 2 anni fa

Risolto


First non-zero element in each column
For a given matrix, calculate the index of the first non-zero element in each column. Assuming a column with all elements zero i...

quasi 2 anni fa

Risolto


Remove the two elements next to NaN value
The aim is to *remove the two elements next to NaN values* inside a vector. For example: x = [6 10 5 8 9 NaN 23 9 7 3 21 ...

quasi 2 anni fa

Risolto


Set the array elements whose value is 13 to 0
Input A either an array or a vector (which can be empty) Output B will be the same size as A . All elements of A equal to 13...

quasi 2 anni fa

Risolto


Get the elements of diagonal and antidiagonal for any m-by-n matrix
In the problem <http://www.mathworks.com/matlabcentral/cody/problems/858-permute-diagonal-and-antidiagonal Problem 858. Permute ...

quasi 2 anni fa

Risolto


Generate N equally spaced intervals between -L and L
Given N and L, return a list of numbers (in ascending order) that divides the interval [-L L] into N equal-length segments. For...

quasi 2 anni fa

Risolto


Return unique values without sorting
If the input vector A is [42 1 1], the output value B must be the unique values [42 1] The values of B are in the same order a...

quasi 2 anni fa

Risolto


Find the largest value in the 3D matrix
Given a 3D matrix A, find the largest value. Example >> A = 1:9; >> A = reshape(A,[3 1 3]); >> islargest(A) a...

quasi 2 anni fa

Risolto


Arrange Vector in descending order
If x=[0,3,4,2,1] then y=[4,3,2,1,0]

quasi 2 anni fa

Risolto


Inner product of two vectors
Find the inner product of two vectors.

quasi 2 anni fa

Risolto


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

quasi 2 anni fa

Risolto


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

quasi 2 anni fa

Risolto


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

quasi 2 anni fa

Risolto


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

quasi 2 anni fa

Risolto


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

quasi 2 anni fa

Risolto


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

quasi 2 anni fa

Risolto


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

quasi 2 anni fa

Risolto


Locate image wells
A mathematical model of wells pumping groundwater near a boundary can be constructed using the method of images, which is also u...

oltre 2 anni fa

Risolto


How to find the 5th power of a variable
Getting an aquaintance of how to find the 5th power of a variable

oltre 2 anni fa

Risolto


How to square something
Looking to see if something could be squared from the code you created from the input of x

oltre 2 anni fa

Risolto


How to cube root something
An aquaintance on how to cube root an element

oltre 2 anni fa

Risolto


Finding the 9th power of a variable
Getting aquainted with finding the 9th power of a variable

oltre 2 anni fa

Risolto


How to square root something
A practice problem to get you aquainted with how to square root something.

oltre 2 anni fa

Risolto


How to find a 7th power of a variable
Getting aquainted with finding the 7th power of a variable.

oltre 2 anni fa

Risolto


How to find the sixth power of a variable
Getting an aquainatance of finding the sixth power of a variable.

oltre 2 anni fa

Risolto


How to find the 4th power of a variable
Getting an aquaintance on how to solve for the 4th power of a variable.

oltre 2 anni fa

Carica altro