Community Profile

photo

Rafi Ahmed


Last seen: 1 year ago Active since 2018

I would love to explore different coding problems with the state-of-the-art approaches

Statistics

All
  • Thankful Level 2
  • First Review
  • 5-Star Galaxy Level 1
  • First Submission
  • Creator
  • Promoter
  • Solver
  • Thankful Level 1

View badges

Content Feed

View by

Question


Is This Bistatic Clutter Model Correct?
I have simulated a bistatic clutter model in the angle-Doppler domain using the clutter Doppler freqenency formula (found in lit...

2 years ago | 0 answers | 0

0

answers

Question


Very Small Coefficients in Ellipse Curve Fitting Problem with Image Indices
I was trying to use the the concept with general equation of ellipse but it yields very small values for coefficients. Can someo...

3 years ago | 0 answers | 0

0

answers

Solved


Find the longest sequence of 1's in a binary sequence.
Given a string such as s = '011110010000000100010111' find the length of the longest string of consecutive 1's. In this examp...

3 years ago

Submitted


Minimum Value of A Matrix (without using min function)
Determination of Minimum Value for Each Row and Whole Matrix without Using the 'min' Function of MATLAB

4 years ago | 1 download |

Submitted


Find Armstrong Numbers for Certain Range
Function of Armstrong numbers for certain range.

4 years ago | 1 download |

Solved


Get the elements of diagonal and antidiagonal for any m-by-n matrix
In the problem <http://www.mathworks.com/matlabcentral/cody/problems/858-permute-diagonal-and-antidiagonal Problem 858. Permute ...

4 years ago

Question


How to get image of figure with exact same size after saving on computer
I would like to save image from a figure with exact same size. I have used export setup for specific size (e.g. points) of image...

4 years ago | 1 answer | 0

1

answer

Question


Denoising Radar Image from White Noise
How Can I remove the white noise from the radar image below using a Treshold only?

4 years ago | 1 answer | 0

1

answer

Solved


Change a specific color in an image
The ability to change colors can be a useful tool in image processing. Given an m x n x 3 array (much like CData in images), fin...

5 years ago

Solved


random picture with random colours
write a function which creates a random(x,y) matrix with random RGB colours for example create_pic(5,5) gives us a 3d matrix. ...

5 years ago

Question


Is it possible to get the exact 2D image of the CData matrix of surf plot?
I have a matlab 3D plot(attached figure). I want to extract the 2D image from the surf plot of matlab like this: is it pos...

5 years ago | 1 answer | 0

1

answer

Question


How to extract the 3D image without losing the other parameters?
I need to extract the 3D image from this Matlab figure(attached as .fig) and place it with same dimension without losing the par...

5 years ago | 0 answers | 0

0

answers

Solved


Trimming Spaces
Given a string, remove all leading and trailing spaces (where space is defined as ASCII 32). Input a = ' singular value deco...

5 years ago

Solved


Length of a short side
Calculate the length of the short side, a, of a right-angled triangle with hypotenuse of length c, and other short side of lengt...

5 years ago

Solved


Duplicates
Write a function that accepts a cell array of strings and returns another cell array of strings *with only the duplicates* retai...

5 years ago

Solved


Sort a list of complex numbers based on far they are from the origin.
Given a list of complex numbers z, return a list zSorted such that the numbers that are farthest from the origin (0+0i) appear f...

5 years ago

Solved


Right and wrong
Given a vector of lengths [a b c], determines whether a triangle with those sides lengths is a right triangle: <http://en.wikipe...

5 years ago

Solved


Convert a vector into a number
This is a sub problem related to this problem: <http://www.mathworks.com/matlabcentral/cody/problems/621-cryptomath-addition>...

5 years ago

Solved


Summing digits
Given n, find the sum of the digits that make up 2^n. Example: Input n = 7 Output b = 11 since 2^7 = 128, and 1 + ...

5 years ago

Solved


Love triangles
Given a vector of lengths [a b c], determines whether a triangle with non-zero area (in two-dimensional Euclidean space, smarty!...

5 years ago

Solved


Rotate a Matrix
Input a Matrix x, Output y is the matrix rotating x 90 degrees clockwise

5 years ago

Solved


Get the length of a given vector
Given a vector x, the output y should equal the length of x.

5 years ago

Solved


Find the sum of the elements in the "second" diagonal
Find the sum of the elements in the diagonal that starts at the top-right corner and ends at the bottom-left corner.

5 years ago

Solved


Make a Palindrome Number
Some numbers like 323 are palindromes. Other numbers like 124 are not. But look what happens when we add that number to a revers...

5 years ago

Solved


Pattern matching
Given a matrix, m-by-n, find all the rows that have the same "increase, decrease, or stay same" pattern going across the columns...

5 years ago

Problem


Scalar Matrix Manipulation
Assume, input x is a scalar matrix such as, x = 2 0 0 0 2 0 0 0 2 th...

5 years ago | 1 | 45 solvers

Solved


Write a function man that takes a row vector v and returns a matrix H as follows..
Write a function called man that takes a row vector v as an input and returns a matrix H whose first column consist of the eleme...

5 years ago

Solved


Given a 4x4 matrix, swap the two middle columns
If a = [1 2 3 4; 1 2 3 4; 1 2 3 4; 1 2 3 4]; then the result is ans = 1 3 2 4 1 3 2...

5 years ago

Solved


Remove NaN ?
input -> matrix (n*m) with at least one element equal to NaN; output -> matrix(p*m), the same matrix where we deleted the enti...

5 years ago

Solved


Check if number exists in vector
Return 1 if number _a_ exists in vector _b_ otherwise return 0. a = 3; b = [1,2,4]; Returns 0. a = 3; b = [1,...

5 years ago

Load more