Community Profile

photo

Max Davenport


Last seen: 2 years 前 自 2021 起处于活动状态

Fly!

统计数据

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

查看徽章

Content Feed

排序方式:

已解决


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

2 years 前

已解决


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

2 years 前

已解决


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

2 years 前

已解决


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

2 years 前

已解决


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

2 years 前

已解决


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

2 years 前

已解决


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

2 years 前

已解决


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

2 years 前

已解决


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

2 years 前

已解决


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

2 years 前

已解决


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

2 years 前

已解决


Energy Conversion 1

2 years 前

已解决


Velocity Conversion

2 years 前

已解决


Area Conversion 2

2 years 前

已解决


Area Conversion 1

2 years 前

已解决


Mass Conversion 2

2 years 前

已解决


Find the Pattern 5

2 years 前

已解决


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

2 years 前

已解决


Find the Pattern 3

2 years 前

已解决


Find the Pattern 2

2 years 前

已解决


Find the Pattern 1

2 years 前

已解决


Energy Conversion 2

2 years 前

已解决


Mass Conversion 1

2 years 前

已解决


Temperature Conversion 3

2 years 前

已解决


Temperature Conversion 2

2 years 前

已解决


Temperature Conversion 1

2 years 前

已解决


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

2 years 前

已解决


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

2 years 前

已解决


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

2 years 前

已解决


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

2 years 前

加载更多