![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/13480087_1536293146231_DEF.jpg)
Sahil
Followers: 0 Following: 0
Statistics
RANK
7,146
of 297,046
REPUTATION
6
CONTRIBUTIONS
1 Question
2 Answers
ANSWER ACCEPTANCE
100.0%
VOTES RECEIVED
3
RANK
of 20,422
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 157,776
CONTRIBUTIONS
0 Problems
0 Solutions
SCORE
0
NUMBER OF BADGES
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF 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...
5 years ago | 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_...
5 years ago | 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 ...
5 years ago | 1 answer | 0