Sponsored Content
Top Forums Shell Programming and Scripting All possible combinations problem Post 302961606 by RudiC on Tuesday 1st of December 2015 03:33:51 PM
Old 12-01-2015
Checking for a set bit outside a "mask" value can be easily done with "binary" operations; unfortunately, awk doesn't allow for this, afaik. bash can do it:
Code:
V1=$((2#1))
V8=$((2#01000))
MASK=$((2#11100))
echo $MASK
28
echo $((V1 | MASK))
29
echo $((V8 | MASK))
28
echo $(((V8 | MASK) == MASK))
1
echo $(((V1 | MASK) == MASK))
0

You see that bit0 is NOT in MASK, but bit7 is.
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Grepping number combinations

Having problem in using the grep command to select all possible combinations a number in a file. Example: 123, I would like to grep the numbers 123,132,213,231,312 and 321. (2 Replies)
Discussion started by: wperry
2 Replies

2. UNIX for Advanced & Expert Users

Combinations

Hello All, i have two files, one of the format A 123 B 124 C 234 D 345 And the other A 678 B 789 C 689 D 567 I would like to combine them into one file with three columns: A 123 678 B 124 789 C 234 689 (4 Replies)
Discussion started by: Khoomfire
4 Replies

3. UNIX for Advanced & Expert Users

All Shortcut key combinations

Hi, I am using the Korn-Shell (ksh) and would like to know all the shortcut keys. For example: Shift + Insert etc. Thank you very much. Take care (0 Replies)
Discussion started by: --crimson--
0 Replies

4. Shell Programming and Scripting

Generating Combinations

Hi, I need to generate all combinations upto n-1 level, if the input file looks like say, A B C D . . .... I need to generate all combinations such that first value remains constant and the remaning are combined with all possible ways. Output A AB AC AD ABC (1 Reply)
Discussion started by: zorg4u
1 Replies

5. Programming

series of combinations

HI I have a series(sorted), which i require to create combinations. I am not getting the good code for doing this. My series should generate the following combinations... Please help me in getting this in C++. Thanks for your help. A: A A B: A B A B A B C: A ... (1 Reply)
Discussion started by: rameshmelam
1 Replies

6. Linux

Help with color combinations

Hi Team when i do, echo on my host box it returns (see below) # echo $PS1 \$ I need to set a color comination of my own for \u means for user : red for \h means for hostname: blue for \W means present working directory: pink for $ means for wht prompt : yellow Do i need to... (1 Reply)
Discussion started by: whizkidash
1 Replies

7. Shell Programming and Scripting

Combinations / Permutations

Hello Scrutinizer / Group , The shell script of awk that Scrutinizer made calculate all possible permutations in this case 3125 (5 numbers) but i want to have only the 126 possible combination. For now it does not matter the specific order of the combination numbers. I would appreciate it you... (1 Reply)
Discussion started by: csierra
1 Replies

8. Programming

Words combinations without repetition

How can I get all combinations of 5 words from 10 words. For example I have 3 words and I want to get all combinations of 2 words. "A", "B", "C" it would like AB, BC, AC. Maybe you know some usefull code or example. Thanx a lot. P.S. Sorry if I'm not right enough cause I don't know English... (2 Replies)
Discussion started by: romeo5577
2 Replies

9. Shell Programming and Scripting

All possible combinations

Hi, I have an input file like this a b c d I want to print all possible combinations between these records in the following way aVSb aVSc aVSd bVSc bVSd cVSd VS indicates versus. All thoughts are appreciated. (5 Replies)
Discussion started by: jacobs.smith
5 Replies

10. Shell Programming and Scripting

awk permutations and combinations

hello, I'm reading this thread, in which there is this code :awk ' function comb(v,i) { for(i in A) { delete A; if(length(A)) comb((v?v"+":x)i) else print v"+"i A; } } { A } END { comb(); } ' infilebut I can't understand where does v come... (5 Replies)
Discussion started by: daPeach
5 Replies
NORMPAT(1)						      General Commands Manual							NORMPAT(1)

NAME
normpat - normalize RADIANCE pictures for use as patterns. SYNOPSIS
normpat [ -v ][ -b ][ -f ][ -r maxres ] picture .. DESCRIPTION
Normpat normalizes one or more RADIANCE pictures to an average brightness of 1.0 and optionally removes fundamental frequencies and blends the edges of the image. The original images are overwritten during this process, and it is recommended that the program work on copies of the pictures for this reason. The -r option can be used to set the maximum horizontal or vertical resolution of the final result, which should not be greater than 256 for most patterns (due to the associated memory burden during rendering). The -f option uses a Fourier transform to remove the lowest fre- quencies from the image, reducing the noticeability of pattern repitition. The -b option can be used to blend the edges of the image so that when it is tiled, the seams are less apparent. The -v option turns on the verbose flag, which prints on the standard output progress messages as the script runs. Normpat is a shell script that makes calls to other RADIANCE programs that do the actual work. AUTHOR
Greg Ward SEE ALSO
getinfo(1), pcomb(1), pcompos(1), pfilt(1), pflip(1), protate(1), psign(1), ra_bn(1), ra_pr(1), ra_t8(1), ra_t16(1), rpict(1) RADIANCE
11/15/93 NORMPAT(1)
All times are GMT -4. The time now is 12:48 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy