Community Profile

photo

Ben Vien


Last seen: 25 Tage vor Aktiv seit 2020

Research Officer at Monash University

Statistiken

  • Treasure Hunt Participant
  • MATLAB Central Treasure Hunt Finisher
  • Speed Demon
  • Indexing II Master
  • Scholar
  • Draw Letters
  • Promoter
  • Project Euler I
  • Community Group Solver
  • CUP Challenge Master
  • Introduction to MATLAB Master
  • Solver

Abzeichen anzeigen

Content Feed

Anzeigen nach

Gelöst


The Piggy Bank Problem
Given a cylindrical piggy bank with radius g and height y, return the bank's volume. [ g is first input argument.] Bonus though...

mehr als 2 Jahre vor

Gelöst


Subtract two numbers

mehr als 3 Jahre vor

Gelöst


Create and Transpose Matrix

mehr als 3 Jahre vor

Gelöst


Isothermal Expansion
Given the initial pressure and volume of an ideal gas, calculate the new volume, given the new pressure. Hint: <https://en.wi...

mehr als 3 Jahre vor

Gelöst


Calculate the CIRCUMFERENCE of circle.
Given the radius is 2, the circumference will be 12.5663.

mehr als 3 Jahre vor

Gelöst


Archimedes principle
According to Archimedes principle, the buoyancy force is equal to the weight of fluid displaced by the submerged portion of an o...

mehr als 3 Jahre vor

Gelöst


Find Logic 13

mehr als 3 Jahre vor

Gelöst


Add 2 Vectors

mehr als 3 Jahre vor

Gelöst


Find Sum of array

mehr als 3 Jahre vor

Gelöst


Find Logic 15

mehr als 3 Jahre vor

Gelöst


Find Logic 16

mehr als 3 Jahre vor

Gelöst


Find Logic 17

mehr als 3 Jahre vor

Gelöst


Find Logic 18

mehr als 3 Jahre vor

Gelöst


Find Logic 19

mehr als 3 Jahre vor

Gelöst


Simple sum 1

mehr als 3 Jahre vor

Gelöst


Armstrong Number
Determine whether the given input n-digit number is Armstrong Number or not. Return True if it is an Armstrong Number. An n-D...

mehr als 3 Jahre vor

Gelöst


Basic commands - amount of inputs
Make a function, which will return amount of given inputs Example: amountinput(1,2,4,3,10) -> 5 , because we gave functio...

mehr als 3 Jahre vor

Gelöst


Count me in
Count the number of occurrences of the second input in the first input Ex. x1 = 12344455511; x2 =2; output = 1 ...

mehr als 3 Jahre vor

Gelöst


Add Me To Death (Sum sum sum)
Given certain vector, sum of the input vector, get the sum of 2 adjacent numbers in the input, and sum of the output vector (wh...

mehr als 3 Jahre vor

Gelöst


Set zero

mehr als 3 Jahre vor

Gelöst


Estimate Pi value by Monte Carlo method

mehr als 3 Jahre vor

Gelöst


Area of a triangle given its sides

mehr als 3 Jahre vor

Gelöst


Matrix indexing with two vectors of indices
Given a matrix M and two index vectors a and b, return a row vector x where x(i) = M(a(i),b(i)).

mehr als 3 Jahre vor

Gelöst


Effective Nuclear Charge

mehr als 3 Jahre vor

Gelöst


Approximate the cosine function
Without using MATLAB trigonometric functions, calculate the cosine of an argument |x| to a precision of |0.0001| *Hint:* You ...

mehr als 3 Jahre vor

Gelöst


Return a list sorted by number of consecutive occurrences
Inspired by Problem 38 by Cody Team. Given a vector x, return a vector y of the values in x sorted by the number of CONSECUTIVE...

mehr als 3 Jahre vor

Gelöst


Symmetric matrix
You must create a n-by-n *symmetric* matrix such that A(row,col) = row/col for col >= row. Example if n =3 : output is : ...

mehr als 3 Jahre vor

Gelöst


Fill a zeros matrix
The aim is to fill an array of all zeros given a numerical value and the index of row and columns for this value. 3 Inputs: ...

mehr als 3 Jahre vor

Gelöst


ベクトル [1 2 3 4 5 6 7 8 9 10] の作成
MATLABでは,角括弧の中に要素を入れることで、ベクトルを作成できる。 x = [1 2 3 4] また次のようにも書ける(コンマはオプション)。 x = [1, 2, 3, 4] 問題:次のベクトルを出力する関数を作成せよ。...

mehr als 3 Jahre vor

Gelöst


Return a list sorted by number of occurrences
Given a vector x, return a vector y of the unique values in x sorted by the number of occurrences in x. Ties are resolved by a ...

mehr als 3 Jahre vor

Mehr laden