g | x | w | all
Bytes Lang Time Link
064Juby250507T212159ZJordan
065JavaScript Node.js240119T020643Zl4m2
068Awk240119T010752ZcamelCas
nanPerl 5240117T212933ZXcali
017Excel171019T133323ZWernisch
015APL Dyalog170518T150936ZAdá
011R160727T125826ZAndre
081Clojure161225T205616ZNikoNyrh
126Java 126 Bytes160726T233952ZRohan Jh
008Scilab160726T182747Zlynn
01505AB1E160726T135733ZEmigna
042Octave160726T132514ZTom Carp
051Mathematica160725T090421ZLLlAMnYP
012Actually160725T082245Zuser4594
018J160724T142816ZLeaky Nu
029Golfscript160724T151353ZLeaky Nu
044Octave160724T164710ZLuis Men
075JavaScript ES6160724T231749ZNeil
011MATL160724T155929ZLuis Men
066Snowman160724T161854ZDoorknob
021Brachylog160724T145006ZFatalize
013Actually160724T144317ZLeaky Nu
013Pyke160724T144033ZBlue
010Pyth160724T135034ZLeaky Nu
050Python 3160724T143112ZLeaky Nu
012Jelly160724T140740ZLeaky Nu

J-uby, 64 bytes

Oof, so many parentheses.

(:-&(:**%:+@&(~:[]&(1..-2))))%(:flat_map+-([Q]*4))|:/%[:sum,:+@]

Attempt This Online!

JavaScript (Node.js), 65 bytes

a=>eval(a.flatMap(x=>[x,x,x,x]).slice(n=a.length,-n).join`+`)/2/n

Try it online!

Awk, 68 bytes

{while(++i%5)p[++a]=$0}END{for(l=a/4;l<3*a/4;)s+=p[++l];print 2*s/a}

Try it online!

Perl 5, 80 + 2 -pa = 82 bytes

map{shift@F;pop@F}1..($b=@F/4);map$_*=1-($b-=0|$b),@F[0,-1];$_=sum(@F)/(@F-2*$b)

Try it online!

Excel, 17 bytes

=TRIMMEAN(A:A,.5)

Relaxed input format make this easy. Input one per row in Column A.

APL (Dyalog), 15 bytes

IQM←(+/÷≢)≢↓-∘≢↓4∘/

Try it online!

4∘/ quadruplicate each element

-∘≢↓ drop as many trailing elements as there are elements in the arguments

≢↓ drop as many leading elements as there are element in the argument

() apply the following tacit function:

+/ the sum

÷ divided by

 the tally

R, 17 11 bytes

mean(n,0.25)

Assuming n is the input vector in the standard R form n=c(1, 2, 3, ...).

This is in no way surprising since R can be considered “THE language for statistical computing” and has many statistical built-ins.

UPDATE. Saved 6 bytes thanks to rturnbull because trim is the first optional argument by default!

Test cases:

a <- c(1, 3, 4, 5, 6, 6, 7, 7, 8, 8, 9, 38)
b <- c(1, 3, 5, 7, 9, 11, 13, 15, 17)
mean(a,trim=0.25) # Returns 6.5
mean(b,trim=0.25) # Returns 9

Clojure, 82 81 bytes

Edit: 1 byte less by re-writing "didvide by 2 n" part.

#(let[n(count %)](*(/ n)0.5(apply +(subvec(vec(for[i % j(range 4)]i))n(* 3 n)))))

Previous:

#(let[n(count %)](/(apply +(subvec(vec(for[i % j(range 4)]i))n(* 3 n)))(* 2.0 n)))

Uses for to generate 4 repeated values, using float 2.0 not to have fractional results, the rest is just standard.

Java 146 126 Bytes

Such java much verbose!

float m(float[]n){float r=0;int l=n.length,i=l/4;r-=(n[i])*(l%4)/4;r+=n[i*3]*(4-(l%4))/4;for(;i<l*3/4;r+=n[i],i++);return r/l*2;}

Older Ungolfed partially readable with test cases

/**
 *
 * @author rohan
 */
public Golf{

float m(float[]n){
//declarations 
float r=0;
int x,i=0,l=n.length;
//sum the array 
for(float m:n){r+=m;}
//remove the excess
for(;i<l/4;r-=n[i]+n[l-i-1],i++);
//weight the quartiles
r-=(n[l/4]+n[l*3/4])*(l%4)/4;
//return the sum/length but multiply by two since only half of the set is averaged
return r/l*2;
    }
static void interQuartileMean(float... set){
    System.out.println(new Golf().m(set));
}
    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
    //test cases pass with flying colours
        interQuartileMean(1, 3, 4, 5, 6, 6, 7, 7, 8, 8, 9, 38);
        interQuartileMean(1, 3, 5, 7, 9, 11, 13, 15, 17);   
    }

}

Scilab, 8 bytes

trimmean

See the documentation. By default, discard=50, so the IQM is computed.

EDIT: You know, this is a trivial built-in answer, so I’m marking it as CW.

05AB1E, 15 bytes

€D€D¹gô¦¨˜DOsg/

Explanation

€D€D             # quadruple each element in list
    ¹gô          # split into pieces the size of input
       ¦¨˜       # remove the first and last and flatten the middle 2
          DOsg/  # sum and divide by length

Try it online

Octave, 42bytes

Another anonymous function for Octave.

@(x)mean([x;x;x;x](:)((b=numel(x))+1:3*b))

You can try it online. Simply enter that command, and then do ans([1 2 4 5 6 9]) or whatever numbers are required.

This one starts by creating from the input array one with 4 of each input element by first concatenating four copies vertically, and then flattening it vertically. This maintains the sort order.

Then is extracts the range of elements from the length of the input array plus 1 up to three times the length of the input array. Because the new array is four times longer, this chops off the upper and lower quartiles.

Finally the mean of the new array is returned.

Mathematica, 51 bytes

Mean@#[[(l=1+Length@#/4);;-l]]&@Sort@Join[#,#,#,#]&

Sorts four copies of the list (to prevent issues with list length not multiples of four), takes part "1 quarter the length of resulting list plus 1" through to the "1/4 length list + 1 from the end", takes their Mean.

Actually, 12 bytes

4α;l¼≈;±(Htæ

Try it online! (currently doesn't work because TIO is a few versions behind)

Explanation:

4α;l¼≈;±(Htæ
4α            repeat each element 4 times
  ;l¼≈        length divided by 4, as integer
      ;±      copy, unary negate
        (Ht   remove first and last quartiles
           æ  mean

J, 20 18 bytes

2 bytes thanks to @miles

#-:@%~-@#+/@}.#}.4#]
-@#(+/%#)@}.#}.4#]

Try it online! (Online interpreter)

Usage

>> f =: -@#(+/%#)@}.#}.4#]
>> f 1 3 5 7 9 11 13 15 17
<< 9

How it works

It is a translation of my answer in Pyth.

Golfscript, 28 29 bytes

~.4*$\,.@/1>2<{+}*{+}*'/'@2*
~.4*$\,.@/1>2<{+}*{+}*\2*-1?*

Try it online!

Octave, 44 bytes

@(x)mean(reshape(~~(1:4)'*x,[],4)(:,2:3)(:))

This defines an anonymous function.

The input is a horizontal vector.

Try it on ideone.

Explanation

The input horizontal vector is first matrix-multiplied (*) by a column vector of four ones (built with ~~(1:4)'). The result is a four-column matrix where each row is a copy of the input vector. This is then reshaped, while maintaining the linear order of the elements, into a 4-column matrix (reshape(...,[],4)). The center two columns are kept ((:,2:3)) and linearized into a single column ((:)), of which the mean is computed (mean(...)).

JavaScript (ES6), 75 bytes

a=>a.concat(a,a,a).sort(g=(x,y)=>x-y).slice(l=a.length,-l).reduce(g,0)/l/-2

Uses the obvious quadruplicate-and-sort approach, and I get to use reduce, which is nice. The only trickery here is to save 4 bytes by reusing the sort comparator to subtract all the array elements from zero, which gives me -2l times the answer I want.

MATL, 12 11 bytes

4Y"G"6L)]Ym

Input is a horizontal vector, with the format

[1, 3, 4, 5, 6, 6, 7, 7, 8, 8, 9, 38]

or

[1 3 4 5 6 6 7 7 8 8 9 38]

Try it online!

Explanation

4Y"    % Input horizontal vector implicitly. Repeat each element 4 times (run-length
       % decoding). The resulting array is still sorted.
G"     % Push input, for each: repeat as many times as the input size
  6L)  %   Remove first and last elements, by applying the index "2:end-1"
]      % End for each
Ym     % Compute mean. Display implicitly

Snowman, 66 bytes

}vg","aS:10sB;aM4aRAsOal`,4nD,`aG0AaGal`NdE`AaL1AfL:nA;alaF,nDtSsP

Try it online!

Uses the same algorithm as @LeakyNun's answers.

}         enable variables b, e, and g
vg        read a line of input into b
","aS     split on commas (in-place)
:10sB;aM  convert each element in resulting array to number ("frombase(10)-map")
4aR       repeat the array 4 times
AsO       sort the array
al        take the length and put it in e without consuming b (the array)
`,        swap b and e, then move e to g; now b=length g=array
4nD       divide b by 4 (4 was stored in e, which is why the array was moved)
,`        move the array and length/4 back to their original positions
aG        split the array into groups of length (length/4)
0AaG      take all elements with index >0 (i.e. remove the first element)
al        store the length of the new array in e again
`NdE`     bring it up to b, decrement, and put it back
AaL       take all elements with index <length-1 (i.e. remove last)
1AfL      flatten the array 1 level deep
:nA;      push a block that adds two numbers (to e)
al        store the length of this new array in g
aF        fold b over e (sum the numbers)
,         move g (the length) into e
nD        divide the sum by the length, resulting in the average
tSsP      to-string and print

Brachylog, 21 bytes

:3jo@4brbcLl/N,L+:N*.

Try it online! or verify multiple test cases

Explanation

This is basically @LeakyNun's Pyth answer algorithm.

:3j      Append 3 copies of the input to itself
o@4      Sort and split in 4 lists of equal length
brb      Remove the head and the tail of the list of lists
cL       Concatenate the 2 sublists into a list L
l/N,     N is the inverse of the length of L
L+:N*.   Output is the product of N and the sum of the elements of L

The only small trick there is in multiplying by the inverse of the length instead of dividing by the length, because division between 2 integers is integer division.

Actually, 20 15 13 bytes

;l╗;+;+S╜@t╜τ@HΣ╜τ@/
;l;τ;a;+;+StHΣ/
;l;τ;aττStHΣ/

Try it online!

How it works

It is a translation of my answer in Pyth.

Pyke, 16 13 bytes

4*S4ftOsDsRl/

Try it here!

Pyth, 11 10 bytes

.O><lQS*4Ql
.OsPtc4S*4

Test suite.

How it works

It quadruplicates the input list to ensure that the data count is divisible by 4.

It still needs sorting, because *4 applies to the whole list instead of to each individual element.

Then, it splits the list into four equal parts, then takes away the first and the last part.

The remaining list is flattened and the average is taken.

Python 3, 50 bytes

lambda n:sum(sorted(n*4)[len(n):-len(n)])/len(n)/2

Ideone it!

How it works

It is a translation of my answer in Pyth.

Jelly, 14 13 12 bytes

x4ṫL‘$ḣLN$S÷LH
x4ṫLḊḣLN$S÷LH
x4œs4ḊṖFS÷LH

Try it online!

Test suite.

How it works

It is a translation of my answer in Pyth.