photo

Pen-Li (Ben) Yu


Last seen: Today Actif depuis 2020

Followers: 0   Following: 0

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

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

Statistiques

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

Afficher les badges

Feeds

Afficher par

Réponse apportée
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('...

plus de 3 ans il y a | 4

Réponse apportée
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)

plus de 3 ans il y a | 0

Réponse apportée
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...

plus de 3 ans il y a | 0