Community Profile

photo

Pen-Li (Ben) Yu


Broadcom Inc.

Last seen: meer dan een jaar ago Active since 2020

Ben is a modeling/design engineer in Broadcom wireless semiconductor divsion.

Programming Languages:
Python, MATLAB
Spoken Languages:
English, Chinese

Statistics

All
  • Treasure Hunt Participant
  • Commenter
  • Promoter
  • First Answer
  • Solver

View badges

Content Feed

View by

Solved


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

meer dan 2 jaar ago

Answered
How do I turn off a particular warning in MATLAB?
Find the warning structure w = warning('query','last') Get the warning ID id = w.identifier; Turn off the warning warning('...

ongeveer 3 jaar ago | 4

Solved


Side of an equilateral triangle
If an equilateral triangle has area A, then what is the length of each of its sides, x? <<https://i.imgur.com/jlZDHhq.png>> ...

meer dan 3 jaar ago

Solved


Length of a short side
Calculate the length of the short side, a, of a right-angled triangle with hypotenuse of length c, and other short side of lengt...

meer dan 3 jaar ago

Solved


Is this triangle right-angled?
Given any three positive numbers a, b, c, return true if the triangle with sides a, b and c is right-angled. Otherwise, return f...

meer dan 3 jaar ago

Solved


Project Euler: Problem 7, Nth prime
By listing the first six prime numbers: 2, 3, 5, 7, 11, and 13, we can see that the 6th prime is 13. What is the Nth prime nu...

meer dan 3 jaar ago

Answered
plotting using for loop
A for loop does not define an array. You need to define d directly. d= 0:0.01:1 vin=20; vout=(vin*4.*d)./(1.-d); figure(1...

meer dan 3 jaar ago | 0

Solved


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

meer dan 3 jaar ago