迷人书包

文章
7
资源
1
加入时间
2年10月24天

linux上安装tcl

1. 首先下载安装包,推荐下载activetcl(对tcl源码进行了预编译,安装步骤简单)。打开网址http://activestate.com找到activetcl的社区版(社区版是免费的,找到linux平台下的.tar.gz包,直接点download就可以下载。我下载的是8.6.4版本的ActiveTcl8.6.4.1.299124-linux-x86_64-threaded.tar.gz)...

在Linux系统下用dd命令制作ISO镜像U盘启动盘

https://blog.csdn.net/master5512/article/details/69055662 首先在 Linux 系统中打开终端,确认 U 盘路径:sudo fdisk -l格式化 U 盘,为了格式化首先需要 umount U 盘: /dev/sdb 是我的 U 盘设备。sudo umount /dev/sdb*格式化 U 盘:sudo mkf...

MATLAB m 序列生成函数 & 相关函数

实验观摩了辅书的代码,感觉有点谜人,做了部分修改。PN 序列生成函数function x = PNseq(p)%Linear shift register for generating PN sequence of polynomial pN = length(p) - 1; %not include the location 0p = fliplr(p);X = [1 zeros(1...