photo

Emma


Last seen: Today Actif depuis 2026

Followers: 0   Following: 0

Statistiques

Cody

0 Problèmes
54 Solutions

RANG
N/A
of 302 115

RÉPUTATION
N/A

CONTRIBUTIONS
0 Questions
0 Réponses

ACCEPTATION DE VOS RÉPONSES
0.00%

VOTES REÇUS
0

RANG
 of 21 552

RÉPUTATION
N/A

CLASSEMENT MOYEN
0.00

CONTRIBUTIONS
0 Fichier

TÉLÉCHARGEMENTS
0

ALL TIME TÉLÉCHARGEMENTS
0

RANG
11 300
of 179 161

CONTRIBUTIONS
0 Problèmes
54 Solutions

SCORE
616

NOMBRE DE BADGES
4

CONTRIBUTIONS
0 Publications

CONTRIBUTIONS
0 Public Chaîne

CLASSEMENT MOYEN

CONTRIBUTIONS
0 Point fort

NOMBRE MOYEN DE LIKES

  • Community Group Solver
  • Promoter
  • Solver

Afficher les badges

Feeds

Afficher par

A résolu


Swap the first and last columns
Flip the outermost columns of matrix A, so that the first column becomes the last and the last column becomes the first. All oth...

environ 3 heures il y a

A résolu


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

environ 3 heures il y a

A résolu


Reverse the vector
Reverse the vector elements. Example: Input x = [1,2,3,4,5,6,7,8,9] Output y = [9,8,7,6,5,4,3,2,1]

environ 4 heures il y a

A résolu


Getting the indices from a vector
This is a basic MATLAB operation. It is for instructional purposes. --- You may already know how to find the logical indices o...

environ 4 heures il y a

A résolu


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

environ 4 heures il y a

A résolu


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

2 jours il y a

A résolu


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

2 jours il y a

A résolu


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

2 jours il y a

A résolu


to the 2 all elements
to the 2 all elements

2 jours il y a

A résolu


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

2 jours il y a

A résolu


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

2 jours il y a

A résolu


Draw a '0' in a one matrix!

2 jours il y a

A résolu


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

2 jours il y a

A résolu


Generate a vector like 1,2,2,3,3,3,4,4,4,4
Generate a vector like 1,2,2,3,3,3,4,4,4,4 So if n = 3, then return [1 2 2 3 3 3] And if n = 5, then return [1 2 2 3 3 3 4...

3 jours il y a

A résolu


Length of the hypotenuse
Given short sides of lengths a and b, calculate the length c of the hypotenuse of the right-angled triangle. <<https://i.imgu...

3 jours il y a

A résolu


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

3 jours il y a

A résolu


Finding Perfect Squares
Given a vector of numbers, return true if one of the numbers is a square of one of the numbers. Otherwise return false. Example...

3 jours il y a

A résolu


Return area of square
Side of square=input=a Area=output=b

3 jours il y a

A résolu


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.

3 jours il y a

A résolu


Add two numbers
Given a and b, return the sum a+b in c.

3 jours il y a

A résolu


Approximation of Pi
Pi (divided by 4) can be approximated by the following infinite series: pi/4 = 1 - 1/3 + 1/5 - 1/7 + ... For a given number of...

3 jours il y a

A résolu


Given a square and a circle, please decide whether the square covers more area.
You know the side of a square and the diameter of a circle, please decide whether the square covers more area.

3 jours il y a

A résolu


Volume Pillar
Calculate the volume of a pillar with radius l and heigth ar.

3 jours il y a

A résolu


Convert radians to degrees
Given input in radians, output to degrees

3 jours il y a

A résolu


Perimeter of a semicircle
Given the diameter d, find the perimeter of a semicircle

3 jours il y a

A résolu


radius of a spherical planet
You just measured its surface area, that is the input.

3 jours il y a

A résolu


Pi Estimate 1
Estimate Pi as described in the following link: <http://www.people.virginia.edu/~teh1m/cody/Pi_estimation1.pdf>

3 jours il y a

A résolu


Calculate area of sector
A=function(r,seta) r is radius of sector, seta is angle of sector, and A is its area. Area of sector A is defined as 0.5*(r^2...

3 jours il y a

A résolu


Pizza!
Given a circular pizza with radius z and thickness a, return the pizza's volume. [ z is first input argument.] Non-scored bonus...

3 jours il y a

A résolu


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

3 jours il y a

Charger plus