Sahil
Followers: 0 Following: 0
Statistiques
RANG
8 039
of 295 467
RÉPUTATION
6
CONTRIBUTIONS
1 Question
2 Réponses
ACCEPTATION DE VOS RÉPONSES
100.0%
VOTES REÇUS
3
RANG
of 20 234
RÉPUTATION
N/A
CLASSEMENT MOYEN
0.00
CONTRIBUTIONS
0 Fichier
TÉLÉCHARGEMENTS
0
ALL TIME TÉLÉCHARGEMENTS
0
RANG
of 153 912
CONTRIBUTIONS
0 Problèmes
0 Solutions
SCORE
0
NOMBRE DE BADGES
0
CONTRIBUTIONS
0 Publications
CONTRIBUTIONS
0 Public Chaîne
CLASSEMENT MOYEN
CONTRIBUTIONS
0 Point fort
NOMBRE MOYEN DE LIKES
Feeds
Saddle points of a 2D matrix
function indices = saddle(M) saddle_m = zeros(size(M)); row_maxima = max(M, [], 2); col_minima = min(M, [], 1); i...
plus de 4 ans il y a | 2
caesar cyphor encryption problem .
function coded = caesar(message , n) msg = double(message); m = mod(n, 95); % this contricts the key within the range coded_...
plus de 4 ans il y a | 1
Question
How to plot a variable density spiral(or any other mathematical 2D- graphs ) on to a image( 512* 512, zero matrix)?
N_k = 64^2; % number of k-samples t = linspace(0,sqrt(0.5),N_k)'; % dummy variable to parameterise ...
plus de 4 ans il y a | 1 réponse | 0