photo

Anudeep

MathWorks

Last seen: fast 3 Jahre vor Aktiv seit 2022

Followers: 0   Following: 0

Statistik

Cody

1 Problem
26 Lösungen

RANG
N/A
of 300.343

REPUTATION
N/A

BEITRÄGE
0 Fragen
0 Antworten

ANTWORTZUSTIMMUNG
0.00%

ERHALTENE STIMMEN
0

RANG
 of 20.926

REPUTATION
N/A

DURCHSCHNITTLICHE BEWERTUNG
0.00

BEITRÄGE
0 Dateien

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANG
13.990
of 168.172

BEITRÄGE
1 Problem
26 Lösungen

PUNKTESTAND
397

ANZAHL DER ABZEICHEN
5

BEITRÄGE
0 Beiträge

BEITRÄGE
0 Öffentlich Kanäle

DURCHSCHNITTLICHE BEWERTUNG

BEITRÄGE
0 Highlights

DURCHSCHNITTLICHE ANZAHL DER LIKES

  • Creator
  • Community Group Solver
  • Commenter
  • Promoter
  • Solver

Abzeichen anzeigen

Feeds

Anzeigen nach

Gelöst


Temperature Conversion 1

fast 3 Jahre vor

Gelöst


Find the numeric mean of the prime numbers in a matrix.
There will always be at least one prime in the matrix. Example: Input in = [ 8 3 5 9 ] Output out is 4...

fast 3 Jahre vor

Gelöst


Determine whether a vector is monotonically increasing
Return true if the elements of the input vector increase monotonically (i.e. each element is larger than the previous). Return f...

fast 3 Jahre vor

Gelöst


Roll the Dice!
*Description* Return two random integers between 1 and 6, inclusive, to simulate rolling 2 dice. *Example* [x1,x2] =...

fast 3 Jahre vor

Gelöst


Remove Duplicates
Remove duplicates from the vector of integers and display in sorted order

fast 3 Jahre vor

Problem


Remove Duplicates
Remove duplicates from the vector of integers and display in sorted order

fast 3 Jahre vor | 0 | 23 Lösungsvorschläge

Gelöst


Total energy

fast 3 Jahre vor

Gelöst


Potential energy calculation

fast 3 Jahre vor

Gelöst


Kinetic energy calculation

fast 3 Jahre vor

Gelöst


Laws of motion 1

fast 3 Jahre vor

Gelöst


Laws of motion 2

fast 3 Jahre vor

Gelöst


Laws of motion 3

fast 3 Jahre vor

Gelöst


Laws of motion 4
Given the initial velocity 'u', final velocity 'v' and acceleration 'a', find the distance travelled.

fast 3 Jahre vor

Gelöst


Laws of motion 5

fast 3 Jahre vor

Gelöst


Laws of motion 6

fast 3 Jahre vor

Gelöst


Remove all the consonants
Remove all the consonants in the given phrase. Example: Input s1 = 'Jack and Jill went up the hill'; Output s2 is 'a ...

fast 3 Jahre vor

Gelöst


Count the peaceful queens
In a 5x5 chessboard with a queen of one color (white, say) on the perimeter, one can place 12 black queens on the board such tha...

fast 3 Jahre vor

Gelöst


Select every other element of a vector
Write a function which returns every other element of the vector passed in. That is, it returns the all odd-numbered elements, s...

fast 3 Jahre vor

Gelöst


Triangle Numbers
Triangle numbers are the sums of successive integers. So 6 is a triangle number because 6 = 1 + 2 + 3 which can be displa...

fast 3 Jahre vor

Gelöst


Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...

fast 3 Jahre vor

Gelöst


Find Air Temperature from Cricket Stridulation Rate
Stridulation is the process that creates a cricket's “chirp” by rubbing their wings or legs. According to the Old Farmer's Alma...

fast 3 Jahre vor

Gelöst


Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...

fast 3 Jahre vor

Gelöst


Summing digits
Given n, find the sum of the digits that make up 2^n. Example: Input n = 7 Output b = 11 since 2^7 = 128, and 1 + ...

fast 3 Jahre vor

Gelöst


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

fast 3 Jahre vor

Gelöst


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

fast 3 Jahre vor

Gelöst


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

fast 3 Jahre vor

Gelöst


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

fast 3 Jahre vor