"함수 map()"의 두 판 사이의 차이

 
(같은 사용자의 중간 판 2개는 보이지 않습니다)
1번째 줄: 1번째 줄:
;map
[[분류: map()]]
;map()


==JavaScript==
==JavaScript==
30번째 줄: 31번째 줄:
==Python==
==Python==
[[category: Python]]
[[category: Python]]
{{소스헤더|Python 3}}
<syntaxhighlight lang='Python' run>
<syntaxhighlight lang='Python'>
numbers = [1, 2, 3, 4, 5, 6]
numbers = [1, 2, 3, 4, 5, 6]
print( list(map(lambda x: x * 2 - 1, numbers)) )
print( list(map(lambda x: x * 2 - 1, numbers)) ) # [1, 3, 5, 7, 9, 11]
# [1, 3, 5, 7, 9, 11]
</syntaxhighlight>
</syntaxhighlight>
<syntaxhighlight lang='Python'>
<syntaxhighlight lang='Python' run>
numbers = [1, 2, 3, 4, 5, 6]
numbers = [1, 2, 3, 4, 5, 6]
print( [x * 2 - 1 for x in numbers] )
print( [x * 2 - 1 for x in numbers] ) # [1, 3, 5, 7, 9, 11]
# [1, 3, 5, 7, 9, 11]
</syntaxhighlight>
</syntaxhighlight>


52번째 줄: 50번째 줄:
[[분류: R]]
[[분류: R]]
{{참고|R sapply()}}
{{참고|R sapply()}}
<syntaxhighlight lang='r'>
<syntaxhighlight lang='r' run>
sapply(c(2,3,4), function(n) { n*n })
sapply(c(2,3,4), function(n) { n*n }) ## [1]  4  9 16
## [1]  4  9 16
</syntaxhighlight>
</syntaxhighlight>



2022년 4월 19일 (화) 11:40 기준 최신판

map()

1 JavaScript[ | ]

var numbers = [1, 4, 9];
var roots = numbers.map(Math.sqrt);
console.log( roots );   // roots is now [1, 2, 3]
console.log( numbers ); // numbers is still [1, 4, 9]
var numbers = [1, 5, 10, 15];
var doubles = numbers.map(function(x) {
   return x * 2;
});
console.log( doubles ); // doubles is now [2, 10, 20, 30]
console.log( numbers ); // numbers is still [1, 5, 10, 15]

2 PHP[ | ]

$a = [2, 3, 4];
$b = array_map( function($n) { return $n*$n; }, $a);
print_r( $b );

3 Python[ | ]

numbers = [1, 2, 3, 4, 5, 6]
print( list(map(lambda x: x * 2 - 1, numbers)) ) # [1, 3, 5, 7, 9, 11]
numbers = [1, 2, 3, 4, 5, 6]
print( [x * 2 - 1 for x in numbers] ) # [1, 3, 5, 7, 9, 11]

4 Perl[ | ]

my @numbers = (1, 2, 3, 4, 5, 6);
print map { $_* 2 - 1 } @numbers; # 1357911

5 R[ | ]

sapply(c(2,3,4), function(n) { n*n }) ## [1]  4  9 16

6 같이 보기[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}