How to divide a graph into 8 equal region and assign a number for each region?
    4 visualizzazioni (ultimi 30 giorni)
  
       Mostra commenti meno recenti
    
I am working with border irregularity. For this I have got upto this curve:

Now I want to divide it into 8 regions  like this:

and for every region I want to assign value=1 so that if the region got minimum 1 star then the value will be 1 and if not then 0. then I wiil add the the number so the range of the result will be 0-8. How can I do this.My code and main image is given below:   

0 Commenti
Risposte (1)
  darova
      
      
 il 2 Lug 2020
        Here is the start
x = 0:.2:20;
x = [x'; nan];      % add 'NaN' to break the line
y = sin(x);
c = round( (1:length(x))/length(x)*5+1 );
cla
patch(x,y,c,'facecolor','none',...
    'edgecolor','flat',...
    'marker','.')
axis equal
 I didn't understand how you want to apply this to your image. Can you explain?
6 Commenti
Vedere anche
Categorie
				Scopri di più su 2-D and 3-D Plots in Help Center e File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!