Community Profile

photo

TheSaint


Last seen: 1 day ago Active since 2024

Followers: 0   Following: 0

Statistics

  • Thankful Level 3

View badges

Feeds

View by

Question


Program not calculating properly
function PokerGame() clc clear RunTotal = 100000; CardsPerHand = 5; NoPair = 0; OnePair = 0; TwoPairs = 0; ThreeofKin...

2 months ago | 2 answers | 0

2

answers

Question


Table not aligning properly
ThePriceisRightWheel() function ThePriceisRightWheel() clc clear RunTotal = 100000; Contestant1Spins = 5:5:100; SpinN...

2 months ago | 1 answer | 0

1

answer

Question


How to find same values in a randi function
RunTotal = 100000; NoPair = 0; OnePair = 0; TwoPairs = 0; ThreeofKind =0; FullHouse = 0; FourofKind = 0; FiveofKind = ...

2 months ago | 2 answers | 0

2

answers

Question


Program not printing to a text file properly
read = importdata("testscores.txt"); StudentID = read(:,1); Score = read(:,2); fid = fopen('FinalGrades.txt', 'w'); Fina...

2 months ago | 1 answer | 0

1

answer

Question


Why does this function not work for decimals?
x = input("Please enter the value of x (in radians): "); approximatearctan = 0; n = 0; arctanactual = atan(x); while (...

2 months ago | 1 answer | 0

1

answer

Question


How to call a separate function to a new program
a = input('Enter the value of a: '); b = input('Enter the value of b: '); c = input('Enter the value of c: '); Discrimi...

3 months ago | 2 answers | 0

2

answers

Question


How to use inputs within a function?
function Discriminant (a) a = input('Enter the value of a: '); b = a*2 fprintf('The value of b is: %i', b) end This...

3 months ago | 1 answer | 0

1

answer

Question


How do I call a function from the command window
myEquation(2) function myEquation (x) a = 0.4361836; b = 0.1201676; c = 0.937298; r = exp(-0.5*(x^2))/(2*pi) ; t...

3 months ago | 2 answers | 0

2

answers

Question


Why is my function not recognized?
function myEquation (x) a = 0.4361836; b = 0.1201676; c = 0.937298; r = (e^(-0.5*(x^2)))/(2*pi) t = 1/(1+(0.3326*...

3 months ago | 1 answer | 0

1

answer

Question


How to add an input to the end of an fprintf function
units = input('Please enter the units for your rectangular coordinates: ','s'); I have this line of code right here. I would li...

3 months ago | 1 answer | 0

1

answer

Question


How do I use fprintf to print to a text file?
fprintf(' Force(N) \t Spring Constant (N/m) \t Potential Energy (J) \n') fprintf(' %1.0f \t\t %2.0f \t\t\t\t\t %0.2f\n', [F;...

3 months ago | 2 answers | 0

2

answers

Question


How to reduce \t commands
printf(' %1.0f \t\t %2.0f \t\t\t\t\t %0.2f\n', [F; SC; E]) Here is my current code. It works just fine, but in order for my ta...

3 months ago | 2 answers | 0

2

answers

Question


Trying to set up a matrix, getting error message
This is my current code, every time I attempt to run it I get an error message that says "Index in position 1 exceeds array boun...

3 months ago | 2 answers | 0

2

answers

Question


How do I print coordinates in an (x, y, z) form?
r = sqrt((x^2)+(y^2)+(z^2)); lambda = atan(y/x); phi = asin(z/r); fprintf('Our rectangular coordinates converted to cyl...

3 months ago | 1 answer | 0

1

answer

Question


How do I make greek letters appear as symbols and use them as variables?
'\lambda' = arctan(y/x) This is my current code. How do I make lambda appear as a symbol, and then set it as a variable? Thanks...

3 months ago | 1 answer | 1

1

answer

Question


How do I put a variable input inside a char vector?
fprintf('Car number' 'is driving the fastest', x) I have this function, and I want to put an input command such as this in betw...

3 months ago | 1 answer | 0

1

answer