Quero que minha pow2($a,$n)
função chame [math]::pow($a,$n)
, então escrevi isto:
function pow2($a,$n) {
return [math]::pow($a,$n)
}
Mas quando eu chamo, recebo este erro:
PS C:\> pow2(2,10)
Cannot convert argument "x", with value: "System.Object[]", for "Pow" to type "System.Double": "Cannot convert the "System.Object[]" value of
type "System.Object[]" to type "System.Double"."
At C:\Users\sebastien.mansfeld\OneDrive - PLURIAD – Groupe
Media-Participations\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1:18 char:9
+ return [math]::pow($a,$n)
+ ~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (:) [], MethodException
+ FullyQualifiedErrorId : MethodArgumentConversionInvalidCastArgument
PS C:\>
Espero este resultado:
PS C:\> pow2(2,10)
1024
PS C:\>
Você está chamando isso de errado.
Os parâmetros de função no Powershell são chamados SEM parênteses.
pow2 2 10
vai funcionarAlém disso, você não precisa
return