TheSaint
Followers: 0 Following: 0
Estadística
17 Preguntas
0 Respuestas
CLASIFICACIÓN
232.951
of 294.599
REPUTACIÓN
0
CONTRIBUCIONES
17 Preguntas
0 Respuestas
ACEPTACIÓN DE RESPUESTAS
64.71%
VOTOS RECIBIDOS
1
CLASIFICACIÓN
of 20.131
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
of 152.091
CONTRIBUCIONES
0 Problemas
0 Soluciones
PUNTUACIÓN
0
NÚMERO DE INSIGNIAS
0
CONTRIBUCIONES
0 Publicaciones
CONTRIBUCIONES
0 Público Canales
EVALUACIÓN MEDIA
CONTRIBUCIONES
0 Temas destacados
MEDIA DE ME GUSTA
Feeds
Pregunta
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...
6 meses hace | 1 respuesta | 0
1
respuestaPregunta
Program not calculating properly
function PokerGame() clc clear RunTotal = 100000; CardsPerHand = 5; NoPair = 0; OnePair = 0; TwoPairs = 0; ThreeofKin...
8 meses hace | 2 respuestas | 0
2
respuestasPregunta
Table not aligning properly
ThePriceisRightWheel() function ThePriceisRightWheel() clc clear RunTotal = 100000; Contestant1Spins = 5:5:100; SpinN...
8 meses hace | 1 respuesta | 0
1
respuestaPregunta
How to find same values in a randi function
RunTotal = 100000; NoPair = 0; OnePair = 0; TwoPairs = 0; ThreeofKind =0; FullHouse = 0; FourofKind = 0; FiveofKind = ...
8 meses hace | 2 respuestas | 0
2
respuestasPregunta
Program not printing to a text file properly
read = importdata("testscores.txt"); StudentID = read(:,1); Score = read(:,2); fid = fopen('FinalGrades.txt', 'w'); Fina...
8 meses hace | 1 respuesta | 0
1
respuestaPregunta
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 (...
8 meses hace | 1 respuesta | 0
1
respuestaPregunta
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...
8 meses hace | 2 respuestas | 0
2
respuestasPregunta
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...
8 meses hace | 1 respuesta | 0
1
respuestaPregunta
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...
8 meses hace | 2 respuestas | 0
2
respuestasPregunta
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*...
8 meses hace | 1 respuesta | 0
1
respuestaPregunta
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...
8 meses hace | 1 respuesta | 0
1
respuestaPregunta
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;...
8 meses hace | 2 respuestas | 0
2
respuestasPregunta
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...
9 meses hace | 2 respuestas | 0
2
respuestasPregunta
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...
9 meses hace | 2 respuestas | 0
2
respuestasPregunta
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...
9 meses hace | 1 respuesta | 0
1
respuestaPregunta
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...
9 meses hace | 1 respuesta | 1
1
respuestaPregunta
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...
9 meses hace | 1 respuesta | 0