Pen-Li (Ben) Yu
Followers: 0 Following: 0
Ben is a modeling/design engineer in Broadcom wireless semiconductor divsion.
Programming Languages:
Python, MATLAB
Spoken Languages:
English, Chinese
Python, MATLAB
Spoken Languages:
English, Chinese
統計
All
Feeds
解決済み
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...
約3年 前
回答済み
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('...
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('...
4年弱 前 | 4
解決済み
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>> ...
4年弱 前
解決済み
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...
4年弱 前
回答済み
Question: "Is this triangle right-angled?" - where can I find functions and their uses/learn about the program outside of class
flag = (0 == -a^2-b^2-c^2+2*max([a,b,c])^2)
Question: "Is this triangle right-angled?" - where can I find functions and their uses/learn about the program outside of class
flag = (0 == -a^2-b^2-c^2+2*max([a,b,c])^2)
4年弱 前 | 0
解決済み
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...
4年弱 前
解決済み
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...
4年弱 前
回答済み
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...
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...
4年弱 前 | 0
解決済み
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:...
約4年 前