摘要: 先利用“真值表”证明“命题逻辑的德摩根律” 再利用命题逻辑的德摩根律证明集合形式的德摩根律 或者更简洁一些 事实上,集合恒等式和逻辑等价式这两者都是布尔代数中的恒等式的特例 阅读全文
posted @ 2025-11-20 21:41 无情的codingbot 阅读(5) 评论(0) 推荐(0)
摘要: sometime is an unspecified point in timesome time is a period/span of timesometimes is an adverb about frequency英语国家也有自己的 的地得for example: He sometimes 阅读全文
posted @ 2025-10-26 11:17 无情的codingbot 阅读(8) 评论(0) 推荐(0)
摘要: 信号与系统: h[n]是离散LTI系统的唯一标识;一个离散LTI系统的全部特点被集中反映于h[n] 用列表法计算卷积的计算复杂度为o(N^2),而快速傅里叶变换的复杂度是o(NlogN) 计算卷积和方法 列表法 卷积公式法 阅读全文
posted @ 2023-06-07 09:32 无情的codingbot 阅读(31) 评论(0) 推荐(0)
摘要: 信号与系统: LTI系统很简单,它简单到:如果我们知道LTI系统的一个x(t)所对应的y(t),那么我们就知道所有x(t)对应的y(t) 阅读全文
posted @ 2023-06-06 08:36 无情的codingbot 阅读(19) 评论(0) 推荐(0)
摘要: https://www.renrendoc.com/paper/214448223.html 正弦场或时谐场:如果场源(电荷或电流)以一定的角频率w随时间作正弦变化,则它所激发的电磁场也以相同的角频率随时间作正弦变化,这种以一定频率作正弦变化的场,例如广播、电视、通信的载波,都是正弦电磁波。 一般情 阅读全文
posted @ 2023-06-05 15:06 无情的codingbot 阅读(722) 评论(0) 推荐(0)
摘要: 上图中选择合适坐标系的含义就是找一个新的函数,使得边界条件齐次化 ? 阅读全文
posted @ 2023-04-28 00:02 无情的codingbot 阅读(21) 评论(0) 推荐(0)
摘要: 从分子运动的角度看,温度的高低是分子热运动激烈程度的反映 分子热运动的不平衡,通过碰撞交换能量,在宏观上就表现为热量的传递 如果介质内部存在别种不均匀的状况,例如物质浓度的不均匀,通过分子的运动也会发生物质的交换,宏观上就表现为分子的扩散 由于微观机理类似,因此扩散过程和热传导过程实际上满足同样的偏 阅读全文
posted @ 2023-04-20 15:03 无情的codingbot 阅读(32) 评论(0) 推荐(0)
摘要: 我们经常要计算,从今天往后N天之后是哪一天(哪年哪月哪日)。现在我们就可以编写一个程序,推算指定日期之后的第N天是什么日期。 输入: 年 月 日 N 输出:(年月日+N天后的)年.月.日 #define _CRT_SECURE_NO_WARNINGS#include <stdio.h>int run 阅读全文
posted @ 2023-04-18 16:25 无情的codingbot 阅读(359) 评论(0) 推荐(0)
摘要: #define _CRT_SECURE_NO_WARNINGS#include <stdio.h>void printspace(int);void main(){ int n, C_baseline, V_space, V_col_in_each_row, V_val, V_mid; regist 阅读全文
posted @ 2023-04-01 15:19 无情的codingbot 阅读(67) 评论(0) 推荐(0)
摘要: #define _CRT_SECURE_NO_WARNINGS#include <stdio.h> int calculate_value(int, int, int);void print_matrix(int);void main(){ int n; scanf("%d", &n); print 阅读全文
posted @ 2023-04-01 12:19 无情的codingbot 阅读(103) 评论(0) 推荐(0)