Community Profile

photo

Rajith


Last seen: 3 months ago Active since 2023

Followers: 0   Following: 0

Statistics

  • First Answer

View badges

Feeds

View by

Answered
maximum clique problem solve
function clique = max_clique(g,clique) if nargin < 2 clique = []; end max_clq = clique; if isempty(...

4 months ago | 0

Answered
Profiling of inefficient recursive Fibonacci series function
function [f, v] = fibo_trace(n,v) v(end+1) = n; if n == 1 || n == 2 f = 1; else [f1, v] = fibo_...

4 months ago | 0

Answered
Code for 'Reverse a Vector'
function v = reversal2(v) if length(v) > 1 ii = round(length(v) / 2); v = [reversal2(v(ii+1:end)) reversa...

4 months ago | 0

Answered
Write a function called mixit
ans function s = mixit(S,w) if size(S,2) ~= length(w) s = []; else w = w(:); ...

5 months ago | 0

Answered
Image Edge Detection Using Edge Function
function out = edgy(in) % Get the size of the input image [r, c] = size(in); % Create an output array tha...

5 months ago | 0