![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/6323233_1522113608430_DEF.jpg)
Meesha Lini Eesan
Followers: 0 Following: 0
Statistics
RANK
102.644
of 297.046
REPUTATION
0
CONTRIBUTIONS
2 Questions
1 Answer
ANSWER ACCEPTANCE
50.0%
VOTES RECEIVED
0
RANK
of 20.422
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 157.776
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
I did this codes but its not working,can anyone figure out whats wrong?
T = imread('tanker.jpg'); imag = T; [m, n] = size(imag); m n figure, imshow(imag) I2 = zeros(floor(m/2),flo...
bijna 10 jaar ago | 2 answers | 0
2
answersWrite a function to determine which elements of an array are even numbers (i.e., …, -4, -2, 0, 2, 4, …). Your function should return a logical array of the same size as the input with 1s (TRUE) in the locations corresponding to even numbers.
A = [-10,-9,-8,-7,-6,-5,-4,-3,-2,1,0,1,2,3,4,5,6,7,8,9,10] % I assign -10 to 10 vector A. B = ~mod(A,2) %I used this funct...
bijna 10 jaar ago | 0
Question
Write a function to determine which elements of an array are even numbers (i.e., …, -4, -2, 0, 2, 4, …). Your function should return a logical array of the same size as the input with 1s (TRUE) in the locations corresponding to even numbers.
How could I solve this?
bijna 10 jaar ago | 2 answers | 0