Question


Extract and sort size of matrix where in the cell
clc;clear;close all im= [0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 ...

2 years ago | 0 answers | 0

0

answers

Question


Using for loop for cell array
clc;clear;close all bw = rgb2gray(imread('image_3.png')); figure;imshow(bw);title('orginal image') [B,~,N]=bwboundaries(b...

2 years ago | 1 answer | 0

1

answer

Question


x=0:pi/100:2*pi; y=sin(x); if x>3 plot(x,y,"b*") else x<=3; plot(x,y,"g*") end I Want PLot X>3 using Defferent Color
clc;clear;close all x=0:pi/100:2*pi; y=sin(x); if x>3 plot(x,y,"b*") else x<=3; plot(x,y,"g*") end

2 years ago | 1 answer | 0

1

answer