gpt4 book ai didi

matlab - RFC 4648 (Base[16,32,64]) 在 Matlab 中的实现

转载 作者:行者123 更新时间:2023-12-04 05:38:01 26 4
gpt4 key购买 nike

RFC4648有没有实现(“Base16、Base32 和 Base64 数据编码”)在 Matlab 中?

最佳答案

在 MATLAB 中,您可以轻松使用嵌入式 Java capabilities . MATLAB 附带 Apache Commons Codec Java 类路径上可用的库。所以你可以这样做:

str = 'http://stackoverflow.com/q/11659710/';
encoder = org.apache.commons.codec.binary.Base64();
result = char(encoder.encode(str-0))';

输出:
>> result
result =
aHR0cDovL3N0YWNrb3ZlcmZsb3cuY29tL3EvMTE2NTk3MTAv

关于matlab - RFC 4648 (Base[16,32,64]) 在 Matlab 中的实现,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11659710/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com