Community Profile

photo

Max Davenport


Last seen: oltre 2 anni fa Attivo dal 2021

Followers: 0   Following: 0

Fly!

Statistiche

  • Community Group Solver
  • MATLAB Central Treasure Hunt Finisher
  • CUP Challenge Master
  • Introduction to MATLAB Master
  • Solver

Visualizza badge

Feeds

Visto da

Risolto


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

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

oltre 2 anni fa

Risolto


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

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

oltre 2 anni fa

Risolto


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

oltre 2 anni fa

Risolto


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

oltre 2 anni fa

Risolto


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

oltre 2 anni fa

Risolto


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

oltre 2 anni fa

Risolto


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

oltre 2 anni fa

Risolto


Rounding off numbers to n decimals
Inspired by a mistake in one of the problems I created, I created this problem where you have to round off a floating point numb...

oltre 2 anni fa

Risolto


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

oltre 2 anni fa

Risolto


Energy Conversion 1

oltre 2 anni fa

Risolto


Velocity Conversion

oltre 2 anni fa

Risolto


Area Conversion 2

oltre 2 anni fa

Risolto


Area Conversion 1

oltre 2 anni fa

Risolto


Mass Conversion 2

oltre 2 anni fa

Risolto


Find the Pattern 5

oltre 2 anni fa

Risolto


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

oltre 2 anni fa

Risolto


Find the Pattern 3

oltre 2 anni fa

Risolto


Find the Pattern 2

oltre 2 anni fa

Risolto


Find the Pattern 1

oltre 2 anni fa

Risolto


Energy Conversion 2

oltre 2 anni fa

Risolto


Mass Conversion 1

oltre 2 anni fa

Risolto


Temperature Conversion 3

oltre 2 anni fa

Risolto


Temperature Conversion 2

oltre 2 anni fa

Risolto


Temperature Conversion 1

oltre 2 anni fa

Risolto


Matlab Basics - Rounding II
Write a script to round a variable x to 3 decimal places: e.g. x = 2.3456 --> y = 2.346

oltre 2 anni fa

Risolto


MATLAB Basic: rounding IV
Do rounding towards plus infinity. Example: -8.8, answer -8 +8.1 answer 9 +8.50 answer 9

oltre 2 anni fa

Risolto


MATLAB Basic: rounding III
Do rounding towards minus infinity. Example: -8.8, answer -9 +8.1 answer 8 +8.50 answer 8

oltre 2 anni fa

Risolto


MATLAB Basic: rounding II
Do rounding nearest integer. Example: -8.8, answer -9 +8.1 answer 8 +8.50 answer 9

oltre 2 anni fa

Carica altro