Statistics
3 Questions
0 Answers
RANK
185,991
of 295,467
REPUTATION
0
CONTRIBUTIONS
3 Questions
0 Answers
ANSWER ACCEPTANCE
33.33%
VOTES RECEIVED
0
RANK
of 20,234
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 153,912
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
Question
can please someone tell me what logic is used for contour function which takes input as a matrix ..how contour is plotted basically ..which pixel it takes for contour..is it like changing intensity of matrix or what ?
Can please someone tell me what logic is used for contour function which takes input as a matrix ? .how contour is plotted ba...
10 years ago | 0 answers | 0
0
answersQuestion
can anyone please explain me this code ..exactly whats happening here while computing curvature ?
function k = curvature_central(u) % compute curvature [ux,uy] = gradient(u); normDu = sqrt(ux.^2+uy.^2+1e-10); Nx = ux./norm...
10 years ago | 1 answer | 0
1
answerQuestion
Could anyone please explain this matlab code...?
function g = NeumannBoundCond(f) [nrow,ncol] = size(f); g = f; g([1 nrow],[1 ncol]) = g([3 nrow-2],[3 ncol-2]); g...
10 years ago | 2 answers | 0