photo

TheSaint


Last seen: 1 year ago Active since 2024

Followers: 0   Following: 0

Statistics

MATLAB Answers

17 Questions
0 Answers

RANK
232,951
of 300,618

REPUTATION
0

CONTRIBUTIONS
17 Questions
0 Answers

ANSWER ACCEPTANCE
64.71%

VOTES RECEIVED
1

RANK
 of 21,030

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK

of 169,839

CONTRIBUTIONS
0 Problems
0 Solutions

SCORE
0

NUMBER OF BADGES
0

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • Thankful Level 3

View badges

Feeds

View by

Question


Need help with restricted areas and warp gates
clc % Prompts user for the desired input method Input = input('Type of input (User or File): ', 's'); if strcmp(Input, 'f...

1 year ago | 1 answer | 0

1

answer

Question


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

2 years ago | 2 answers | 0

2

answers

Question


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

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

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

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

2 years 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*...

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

2 years 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;...

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

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

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

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

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

2 years ago | 1 answer | 0

1

answer