Estadística
9 Preguntas
0 Respuestas
CLASIFICACIÓN
11.254
of 300.365
REPUTACIÓN
4
CONTRIBUCIONES
9 Preguntas
0 Respuestas
ACEPTACIÓN DE RESPUESTAS
44.44%
VOTOS RECIBIDOS
4
CLASIFICACIÓN
of 20.933
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
of 168.262
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
what is the difference between axis normal, axis square, axis equal, and axis tight?
what is the difference between axis normal, axis square, axis equal, and axis tight?
más de 9 años hace | 1 respuesta | 0
1
respuestaPregunta
How do you print data from the command window without a script? Do I need a script to print that information?
I'm trying to print an 'fprint' display in the command window, but whenever I publish it, the script is the only thing being pri...
más de 9 años hace | 0 respuestas | 0
0
respuestasPregunta
using ideal gas law (v = RT/P), develop a matrix that contains the specific volume f or an ideal gas for which the rows indicate values of T from 200K to 1000K in increments of 200K, and the colunms indicate the values of p from 1 atm to 5 atm...
...in increments of 1 atm. R = .08206; T = [200:200:1000]; p = [1:5]'; v = (R.*T)/p What is wrong
más de 9 años hace | 1 respuesta | 0
1
respuestaPregunta
What code would you input to represent the equation for the volume of a sphere without getting an undefined variable error?
V=(4*pi*r^3)/3
más de 9 años hace | 3 respuestas | 0
3
respuestasPregunta
i'm trying to create an if loop so that I can run my program starting with x=1 and increasing by 1 to x =3.
The conditions are as follows: if x=2, f=Inf if x=>2, f=NaN otherwise run the function, f=log(5/2-x) x2 = 0; ...
más de 9 años hace | 0 respuestas | 0
0
respuestasPregunta
How do I compute the geometrical mean given the data: 92.3, 93.2, 91.9, 93.5, 92.7, 93.1, 93.8, 92.4
D5=[92.3 93.2 91.9 93.5 92.7 93.1 93.8 92.4]; n=length(D5); geometric_mean=0 for q=1:n; z=D5(q); geomet...
más de 9 años hace | 1 respuesta | 0
1
respuestaPregunta
How do I define a variable without assigning it a value?
I just want to define a variable, f without assigning any values to it so I can use it in an equation.
más de 9 años hace | 6 respuestas | 4
6
respuestasPregunta
How to produce an 'if else' loop with an x starting at 1 and increasing to 3 by 1 at each end of the loop
x = [1:1:3]; if x == 2; f2 = inf elseif x > 2; f2 = NaN else f2 = log(5/2-x) end I'm trying to inp...
más de 9 años hace | 1 respuesta | 0
1
respuestaPregunta
What did I do wrong with my code to get this "^" error?
I input an equation as y=((x^2)*sin(x))/exp(x) and defined x as x=logspace(0,6,7); in the script. When I run it, i get a message...
más de 9 años hace | 1 respuesta | 0
