photo

Sahil


Last seen: 대략 4년 전 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년 초과 전 | 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년 초과 전 | 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년 초과 전 | 답변 수: 1 | 0

1

답변