 983w7
		
			983w7
		
		
		
		
		
		
		
		
	
			11-11-2010 12:10 PM
Hi,
I wonder if someone can help me to design a VI that will be capable of detecting and displaying the start index and the length on each patch. There are 3 patches each one of them contains number of successive elements less than1.
Attached is the sample data to be used.
Please!!!!
11-11-2010 12:13 PM
Hi,
I wonder if someone can help me to design a VI that will be capable of detecting and displaying the start index and the length in each patch. There are 3 patches each one of them contains number of successive elements less than1.
Attached is the sample data to be used.
Please!!!!
 PJS
		
			PJS
		
		
		
		
		
		
		
		
	
			11-11-2010 12:20 PM
school project? Question was asked a couple days ago here.
 RavensFan
		
			RavensFan
		
		
		 
		
		
		
		
		
	
			11-11-2010 12:21 PM
Is this homework?
It sounds an awful lot like this recent message thread. http://forums.ni.com/t5/LabVIEW/Urgent-Help-please/td-p/1291098
11-12-2010 11:12 AM
that's same one but i have done 1&2 i just need 3. if you know please!!!
 Dennis_Knutson
		
			Dennis_Knutson
		
		
		
		
		
		
		
		
	
			11-12-2010 10:55 PM
You have to make an attempt to solve the problem. Do you think your professor does not monitor the forum? What do you learn if someoone does your work for you?
11-16-2010 07:38 AM
Hi,
Attached is what I have done so far.
I got the index numbers, and now I only need the number of element for the thin patches. it sould look like this:
Index 13 ------- 5 elements
Index 46 ------- 5 elements
Index 61 ------- 4 elements
 RavensFan
		
			RavensFan
		
		
		 
		
		
		
		
		
	
			11-16-2010 08:24 AM
Maintain another shift register that counts how many elements are below the threshold. Whenever an element is below the threshold, add 1 to the counter. When it goes back above for the first time, Put the counter value into another array in a shift register and reset the counter to zero.
 Broken_Arrow
		
			Broken_Arrow
		
		
		 
		
		
		
		
		
	
			11-16-2010 09:40 AM
Just Print