Tarun Sangwan
Followers: 0 Following: 0
Estadística
0 Preguntas
3 Respuestas
CLASIFICACIÓN
19.697
of 295.638
REPUTACIÓN
2
CONTRIBUCIONES
0 Preguntas
3 Respuestas
ACEPTACIÓN DE RESPUESTAS
0.00%
VOTOS RECIBIDOS
1
CLASIFICACIÓN
of 20.255
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
of 154.207
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
write a function called palindrome that takes one input argument a char vector and recursively determine whether that argument is a palindrome you are not allowed to use loops not built in function like srtcmp etc. the function returns true or false
function p = palindrome(n) if length(n)/2<1 p = 2 else p = n(1) == n(end) p = [p palindrome(n(2:end-1))] end...
8 meses hace | 0
Write a MATLAB script file that calculates the sum of first n natural numbers (the program could prompt the user for the number n). The program must use a “for” or “while” loop to accomplish this, and must NOT use the ready formula s = 1 2 n (n + 1).
%% using cell method function b = addds(n) g = cell(1,n) for i = 1:n g{1,i} = i end b = sum(g) %%using recurssion fu...
8 meses hace | 0
How can I fix propagation speed error using Simscape Power System?
propogation time=distance/propagation speed(commonly reffered to speed of light) if there is propagation error you must check v...
más de 2 años hace | 1