Question
2. Write a MATLAB function called Ctype() that decides whether a capacitor is larger than or equal to 1 F. If so, the function prints
2. Write a MATLAB function called Ctype() that decides whether a capacitor is larger than or equal to 1 F. If so, the function prints out "C is probably electrolytic". Otherwise, the function prints out "C is probably non-polarized". An example of how the function would be used is shown below. >> Ctype(2e-6) C is probably electrolytic 3. Write a MATLAB program that does the following steps to flip a coin three times in a row: % Generate a random number between 0 and 1 % If the random number is greater than 0.5, print 'Heads'. % Otherwise, print 'Tails'. After flipping the coin three times, the program prints out 'you win' if all the tosses are Heads.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started