![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/13480087_1536293146231_DEF.jpg)
Sahil
Followers: 0 Following: 0
Statistik
RANG
7.148
of 297.016
REPUTATION
6
ANTWORTZUSTIMMUNG
100.0%
ERHALTENE STIMMEN
3
RANG
of 20.419
REPUTATION
N/A
DURCHSCHNITTLICHE BEWERTUNG
0.00
BEITRÄGE
0 Dateien
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANG
of 157.725
BEITRÄGE
0 Probleme
0 Lösungen
PUNKTESTAND
0
ANZAHL DER ABZEICHEN
0
BEITRÄGE
0 Beiträge
BEITRÄGE
0 Öffentlich Kanäle
DURCHSCHNITTLICHE BEWERTUNG
BEITRÄGE
0 Highlights
DURCHSCHNITTLICHE ANZAHL DER LIKES
Feeds
Beantwortet
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...
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...
fast 5 Jahre vor | 2
Beantwortet
caesar cyphor encryption problem .
function coded = caesar(message , n) msg = double(message); m = mod(n, 95); % this contricts the key within the range coded_...
caesar cyphor encryption problem .
function coded = caesar(message , n) msg = double(message); m = mod(n, 95); % this contricts the key within the range coded_...
fast 5 Jahre vor | 1
Frage
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 ...
fast 5 Jahre vor | 1 Antwort | 0