mayank ghugretkar
Followers: 0 Following: 0
Estadística
2 Preguntas
4 Respuestas
CLASIFICACIÓN
2.080
of 295.527
REPUTACIÓN
30
CONTRIBUCIONES
2 Preguntas
4 Respuestas
ACEPTACIÓN DE RESPUESTAS
50.0%
VOTOS RECIBIDOS
15
CLASIFICACIÓN
of 20.242
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
of 154.057
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
caesar cyphor encryption problem .
Caesar's cypher is the simplest encryption algorithm. It adds a fixed value to the ASCII (unicode) value of each character of a ...
más de 5 años hace | 42 respuestas | 0
42
respuestasWrite a function called under_age that takes two positive integer scalar arguments: age that represents someone's age, and limit that represents an age limit. The function returns true if the person is younger than the age limit. If the second arg
this can work too... A bit compact approach function too_young = under_age(age, limit) if nargin < 2 limit = 21; end ...
más de 5 años hace | 3
Pregunta
how does a diff operation works for relational and logical cases with arrays ?
i was trying to work with diff operator after trying out sum[1 2 4 6] diff([14 5 6 14 32]) ans= -9 1 8 18 above statemen...
más de 5 años hace | 2 respuestas | 0
2
respuestashow to replace elements in top third, middle third, and bottom third of matix
function T=trio(n,m) T(3*n,m)=3; % or you can use random no. generation...but since we are assigning alues anyway , this vl wor...
más de 5 años hace | 3
Write a function called minimax that takes M, a matrix input argument and returns mmr, a row vector containing the absolute values of the difference between the maximum and minimum valued elements in each row. As a second output argument called mmm,
here's my function.... went a little descriptive for good understanding to readers. function [a,b]=minimax(M) row_max=max(M')...
más de 5 años hace | 5
Matlab function to take matrix as input and return elements in its four corners as output
function [top_left,top_right,bottom_left,bottom_right] = corners(M) top_left = M(1,1); top_right = M(1,end); bott...
más de 5 años hace | 4