![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/25545089_1644396982212_DEF.jpg)
Sarah Gomez
Followers: 0 Following: 0
Estadística
8 Preguntas
0 Respuestas
CLASIFICACIÓN
110.678
of 297.016
REPUTACIÓN
0
CONTRIBUCIONES
8 Preguntas
0 Respuestas
ACEPTACIÓN DE RESPUESTAS
12.5%
VOTOS RECIBIDOS
0
CLASIFICACIÓN
of 20.419
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
of 157.725
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
Array isn't being correctly indexed?
T = 10; numpoints = 1000; %1:1000:10, so from 1 to 10 I want 1000 points in between for i = 1:numpoints:T T1(1,i) = i...
casi 3 años hace | 1 respuesta | 0
1
respuestaPregunta
Divide elements of matrix by scalar
for i = 1:N P(i) = P(i)/2; end I have this for loop that's supposed to divide each element of P by two, then I graph...
casi 3 años hace | 1 respuesta | 0
1
respuestaPregunta
Make first and last element of array 0
N = 12*0.5; TAU_max = 15; for i = 1:N TAU(i,:) = i*(TAU_max/N); end I have a little loop here that creates a column ...
casi 3 años hace | 2 respuestas | 0
2
respuestasPregunta
Prevent variables from displaying after fprint
[root, funcroot, esterr, numiter] = bisectionMethod(@(x)x^2-9, [0 30], 0.005, 180) For the given function: @(x)x^2-9 The roo...
casi 3 años hace | 1 respuesta | 0
1
respuestaPregunta
Alternative for linspace?
function [xvals, yvals]=A5fourier(L,nmax,numpoints) %xvals=linspace(-L,L,numpoints); for z=-0.1:0.001:0.1 xvals=z; e...
alrededor de 3 años hace | 1 respuesta | 0
1
respuestaPregunta
Plotting values from a function in different script
function [xvals,yvals]=fourier(L,nmax,numpoints) xvals=[]; yvals=[]; for x=1:numpoints y=0; for n=1:2:nmax ...
alrededor de 3 años hace | 1 respuesta | 0
1
respuestaPregunta
Replace a syms command
clear; clc; syms 'j' y1 = 7 .* (-0.2).*j.*cos(7.*j + 3); y2 = 5 .* exp(-1.1).*j.*tan(3.*j - 1); fplot(y1, [0 30]); ...
alrededor de 3 años hace | 1 respuesta | 0
1
respuestaPregunta
Adding text to plot with random inputs
clc; clear; y=20*randn(1,100000)+80; histogram(y,11) title('Normal Distribution') xlabel('Value'); ylabel('Count'); ...
alrededor de 3 años hace | 2 respuestas | 0