提问


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 ...

3 years 前 | 0 个回答 | 0

0

个回答

提问


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...

3 years 前 | 1 个回答 | 0

1

个回答

提问


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

3 years 前 | 1 个回答 | 0

1

个回答