photo

Alaa


Last seen: Today Active since 2024

Followers: 1   Following: 1

Programming Languages:
MATLAB
Spoken Languages:
English

Statistics

Cody

4 Problems
164 Solutions

RANK
N/A
of 300,553

REPUTATION
N/A

CONTRIBUTIONS
0 Questions
0 Answers

ANSWER ACCEPTANCE
0.00%

VOTES RECEIVED
0

RANK
 of 21,024

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK
1,082
of 169,635

CONTRIBUTIONS
4 Problems
164 Solutions

SCORE
2,196

NUMBER OF BADGES
12

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • Speed Demon
  • Creator
  • CUP Challenge Master
  • Introduction to MATLAB Master
  • Commenter
  • Promoter
  • Leader
  • Community Group Solver
  • Solver

View badges

Feeds

View by

Solved


Calculate Reynolds Number
Write a MATLAB function that calculates the Reynolds number for flow over a flat plate: ​ ρ = fluid density (kg/m³) V = veloc...

7 days ago

Problem


Calculate Reynolds Number
Write a MATLAB function that calculates the Reynolds number for flow over a flat plate: ​ ρ = fluid density (kg/m³) V = veloc...

7 days ago | 2 | 12 solvers

Solved


Compute Airspeed from Mach Number
Write a MATLAB function that converts a Mach number to airspeed given the speed of sound aa in m/s: V=M⋅a V = airspeed (m/s) M...

7 days ago

Problem


Compute Airspeed from Mach Number
Write a MATLAB function that converts a Mach number to airspeed given the speed of sound aa in m/s: V=M⋅a V = airspeed (m/s) M...

7 days ago | 0 | 10 solvers

Solved


Calculate Drag Force
Write a MATLAB function to compute the drag force on an object moving through air: ​ where: D is drag force (N) ρ is air de...

7 days ago

Problem


Calculate Drag Force
Write a MATLAB function to compute the drag force on an object moving through air: ​ where: D is drag force (N) ρ is air de...

7 days ago | 1 | 10 solvers

Solved


Calculate Lift Force on an Airfoil
Write a MATLAB function to calculate the lift force acting on an airfoil given the air density, wing area, velocity of the airfl...

7 days ago

Problem


Calculate Lift Force on an Airfoil
Write a MATLAB function to calculate the lift force acting on an airfoil given the air density, wing area, velocity of the airfl...

7 days ago | 0 | 13 solvers

Solved


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

7 days ago

Solved


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

7 days ago

Solved


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

7 days ago

Solved


If you have matrix A, create matrix B using matrix A as an "element"
A = [1 2 3 4; 5 6 7 8] B = [1 2 3 4 1 2 3 4; 5 6 ...

7 days ago

Solved


Unit conversion
Convert x degree Celsius to y degree Fahrenheit.

7 days ago

Solved


Swap two numbers
Example Input: a = 10 b = 20 Output a = 20 b = 10

7 days ago

Solved


Annual Salary
What is the annual salary of Mr. Cody if he works 40 hours a week and gets $x per hour and a yearly bonus of $2000? (Let, 50 wee...

7 days ago

Solved


Try 1.5.4: Celsius to Fahrenheit
Write a program to convert an input given in Celsius to Fahrenheit. Examples: Input celsiusValue = 100 Output fahrValu...

7 days ago

Solved


Square root of a number
Write a code that will output the square root of x.

7 days ago

Solved


Area of a circle
Given the radius x, y would be the area of a circle. Pi = 3.1416

7 days ago

Solved


Write a code that will follow the equation y = x * (x + x) * x.
If x = 5, y = 5 * (5+5) * 5 = 250

7 days ago

Solved


Element by element multiplication of two vectors
Given two input vectors, return the element-by-element product. Example A = [1 2 3] B = [7 3 1] The answer should be...

7 days ago

Solved


Max of a Vector
Write a function to return the max of a vector

7 days ago

Solved


find the surface area of a cube
given cube side length x, find the surface area of the cube, set it equal to y

7 days ago

Solved


Do Fast Fourier Transformation
Example Fast Fourier Transformation from vector [2,1]) ans = 3 1

7 days ago

Solved


The sum of the numbers in the vector
eg. [1,2,3]---->SUM=6

7 days ago

Solved


Area of rhombus
Calculate the rhombus area

7 days ago

Solved


Unit Matrix
Given n, you should return an n-by-n unit matrix. Example: If input is n=2 then A = [ 1 0 0 1 ] If input is n=4 th...

7 days ago

Solved


Right Triangle Side Lengths (Inspired by Project Euler Problem 39)
If p is the perimeter of a right angle triangle with integral length sides, { a, b, c }, there are exactly three solutions for p...

7 days ago

Solved


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

7 days ago

Solved


Summation of array
Given an array, Find the sum of all of the elements in it Examples: Input x = [1 2 3 5; 4 5 6 7]; Output y is 33

7 days ago

Load more