Weisz Thomas
Followers: 0 Following: 0
Estadística
CLASIFICACIÓN
127.252
of 295.605
REPUTACIÓN
0
CONTRIBUCIONES
4 Preguntas
1 Respuesta
ACEPTACIÓN DE RESPUESTAS
100.0%
VOTOS RECIBIDOS
0
CLASIFICACIÓN
of 20.252
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
of 154.164
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
i need help balancing the inner matrix dimensions of the two sine functions .
function mul_sines(f1,f2) t=0:0.01:20; s=sin(f1*t)*sin(f2*t+pi); plot(t,s)
casi 6 años hace | 1 respuesta | 0
1
respuestaPregunta
how can i make the centre elements of a matrix to become zeros
I am writting a function that takes an n-by-m matrix and and an odd interger k as input arguments. both n and m are odd numbers ...
casi 6 años hace | 3 respuestas | 0
3
respuestasi'am writing a function the takes an n-by-m matrix as an input and returns the input matrix with the center element zeroed out. when i run it, it is giving the error:' not enough input arguments' in line two. can anybody assist me please.
function h= zero_middle(h) h(end/2+1/2,end/2+1/2)=0; end
casi 6 años hace | 0
Pregunta
i'am writing a function the takes an n-by-m matrix as an input and returns the input matrix with the center element zeroed out. when i run it, it is giving the error:' not enough input arguments' in line two. can anybody assist me please.
function zero_middle(h) [n,m]=size(h); for ii=1:n; for jj=1:m; if mod(ii,2) && mod(jj,2); h(end/2+1...
casi 6 años hace | 2 respuestas | 0
2
respuestasPregunta
what are the indices of the middle element of a matrix
Write a function called zero_middlethat takes an n-by-mmatrix as an input where both nand mare odd numbers (the function does ...
casi 6 años hace | 1 respuesta | 0