Statistiques
17 Questions
0 Réponses
RANG
232 951
of 298 237
RÉPUTATION
0
CONTRIBUTIONS
17 Questions
0 Réponses
ACCEPTATION DE VOS RÉPONSES
64.71%
VOTES REÇUS
1
RANG
of 20 553
RÉPUTATION
N/A
CLASSEMENT MOYEN
0.00
CONTRIBUTIONS
0 Fichier
TÉLÉCHARGEMENTS
0
ALL TIME TÉLÉCHARGEMENTS
0
RANG
of 160 627
CONTRIBUTIONS
0 Problèmes
0 Solutions
SCORE
0
NOMBRE DE BADGES
0
CONTRIBUTIONS
0 Publications
CONTRIBUTIONS
0 Public Chaîne
CLASSEMENT MOYEN
CONTRIBUTIONS
0 Point fort
NOMBRE MOYEN DE LIKES
Feeds
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...
12 mois il y a | 1 réponse | 0
1
réponseQuestion
Program not calculating properly
function PokerGame() clc clear RunTotal = 100000; CardsPerHand = 5; NoPair = 0; OnePair = 0; TwoPairs = 0; ThreeofKin...
environ un an il y a | 2 réponses | 0
2
réponsesQuestion
Table not aligning properly
ThePriceisRightWheel() function ThePriceisRightWheel() clc clear RunTotal = 100000; Contestant1Spins = 5:5:100; SpinN...
environ un an il y a | 1 réponse | 0
1
réponseQuestion
How to find same values in a randi function
RunTotal = 100000; NoPair = 0; OnePair = 0; TwoPairs = 0; ThreeofKind =0; FullHouse = 0; FourofKind = 0; FiveofKind = ...
environ un an il y a | 2 réponses | 0
2
réponsesQuestion
Program not printing to a text file properly
read = importdata("testscores.txt"); StudentID = read(:,1); Score = read(:,2); fid = fopen('FinalGrades.txt', 'w'); Fina...
environ un an il y a | 1 réponse | 0
1
réponseQuestion
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 (...
environ un an il y a | 1 réponse | 0
1
réponseQuestion
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...
environ un an il y a | 2 réponses | 0
2
réponsesQuestion
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...
environ un an il y a | 1 réponse | 0
1
réponseQuestion
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...
environ un an il y a | 2 réponses | 0
2
réponsesQuestion
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*...
environ un an il y a | 1 réponse | 0
1
réponseQuestion
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...
environ un an il y a | 1 réponse | 0
1
réponseQuestion
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;...
environ un an il y a | 2 réponses | 0
2
réponsesQuestion
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...
environ un an il y a | 2 réponses | 0
2
réponsesQuestion
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...
environ un an il y a | 2 réponses | 0
2
réponsesQuestion
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...
environ un an il y a | 1 réponse | 0
1
réponseQuestion
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...
environ un an il y a | 1 réponse | 1
1
réponseQuestion
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...
environ un an il y a | 1 réponse | 0