photo

Sahil


Last seen: 4 years 前 自 2020 起处于活动状态

Followers: 0   Following: 0

统计学

  • First Answer
  • Thankful Level 1

查看徽章

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...

4 years 前 | 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_...

4 years 前 | 1

提问


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 ...

4 years 前 | 1 个回答 | 0

1

个回答