Python和C++音调音符规划和算法

🎯要点

  1. 🎯音符表征和代码实现:🖊半音位置和索引之间的转换 | 🖊全音阶音调表征 | 🖊全音阶缓存 | 🖊全音阶音高表征。🎯音程表征和代码实现:🖊音程质量 | 🖊计算开始和结束音高。🎯情态和音调和代码实现:🖊创建情态:全音阶调式、五声音阶、八音调态、全音调态、布鲁斯调式 | 🖊构建模态 | 🖊音调表征 | 🖊生成基于音高的音阶。🎯音符时长代码实现:🖊时间线转换算法 | 🖊节拍时间转换算法 | 🖊全音符时间表征 | 🖊位置和时长算子 | 🖊节拍位置 | 🖊拍号和节奏 | 🖊时间转换算法。🎯音符及其连音代码实现:🖊梁和连音定义 | 🖊反转旋律的算法。🎯和弦代码实现:🖊文本规范构建和弦 | 🖊三级和弦 | 🖊次和弦 | 🖊四和弦 。🎯乐器模型代码实现:🖊演奏记号列表。🎯乐谱表征和代码实现:🖊声音中的嵌套音符 | 🖊节奏、节拍和调号序列 | 🖊基于时间的音符搜索方式:红黑树方式、音程树方式 | 🖊事件和观察者模式更新音程树。🎯MIDI 表征和代码实现:🖊MIDI消息定义 | 🖊乐谱和MIDI文件转换算法 | 🖊音符转换为MIDI文件。🎯音调约束规划 | 🎯音调移位变换 | 🎯旋律反转变换和重塑 | 🎯和声转录 | 🎯逆转旋律。
  2. 🎯音乐合成:🖊节拍自定义:🖊使用底鼓、军鼓和踩镲 | 🖊旋律创建:🖊贝多芬《致爱丽丝》混音版 | 🖊和弦创建:🖊观察音色、和声和时间的细微变化 | 🖊音阶、调和旋律构建 | 🖊全音阶和弦 | 🖊傅里叶变换创建音效 | 🖊 基于音符的音效 | 🖊歌曲编辑。
  3. 🎯Python数字声音合成 | 🎯C++数字声音合成

🍇C++多抽头混响音效

混响与延迟类似,都为声音添加了回声。 不过,它的不同之处在于,延迟会添加一个回声(即使该回声会重复出现,每次都会更安静),而混响会在声音中添加多个回声。 基本上,混响使声音听起来像是在教堂、深洞或小浴室中演奏的。 延迟只会让事情听起来有点回声。

该技术非常简单。 您有一个样本缓冲区来保存最后 N 个样本,然后当您处理传入样本时,您添加来自延迟缓冲区的多个样本,每个样本乘以不同的音量(幅度)并将其添加到传入样本中以获得输出样本。 然后,您还将该传出样本放入循环缓冲区中当前索引处的混响缓冲区中。

这是一些关于如何实现它的伪代码:


reverbBuffer[reverbSamples] = 0;reverbIndex= 0;for (i = 0; i < numSamples; ++i)
{outSample[i] = inSample[i];for (j = 0; j < numTaps; ++j)outSample[i] += reverbBuffer[reverbIndex - taps[j].tapTime] * taps[j].feedbackMultiplier; reverbBuffer[reverbIndex] = outSample[i];reverbIndex++;if (reverbIndex>= reverbSamples)reverbIndex= 0;
}

在下面的示例代码以及上面的混响处理示例中,以下是所使用的拍子的时间和幅度。幅度以 dB 和幅度的形式给出,因此您可以看到您更喜欢的那个。
Time (ms)  d B Amplitude  79 − 25 0.0562 130 − 23 0.0707 230 − 15 0.1778 340 − 23 0.0707 470 − 17 0.1412 532 − 21 0.0891 662 − 13 0.2238 \begin{array}{lll} \text { Time (ms) } & dB & \text { Amplitude } \\ 79 & -25 & 0.0562 \\ 130 & -23 & 0.0707 \\ 230 & -15 & 0.1778 \\ 340 & -23 & 0.0707 \\ 470 & -17 & 0.1412 \\ 532 & -21 & 0.0891 \\ 662 & -13 & 0.2238 \end{array}  Time (ms) 79130230340470532662dB25231523172113 Amplitude 0.05620.07070.17780.07070.14120.08910.2238
通过更多的努力,您可能会想出一些更好的抽头值来使混响听起来更好。下面的示例代码加载 in.wav,使用上面提到的 Tap 对其进行处理,并将其写出为 out.wav。 与往常一样,波形加载代码对于某些波形格式存在一些问题。

#define _CRT_SECURE_NO_WARNINGS#include <array>
#include <stdio.h>
#include <string.h>
#include <stdint.h>
#include <cmath>
#include <vector>#define _USE_MATH_DEFINES
#include <math.h>template <typename T, typename PHANTOM_TYPE>
struct SNumeric
{
public:explicit SNumeric(const T &value) : m_value(value) { }SNumeric() : m_value() { }inline T& Value() { return m_value; }inline const T& Value() const { return m_value; }typedef SNumeric<T, PHANTOM_TYPE> TType;typedef T TInnerType;// Math OperationsTType operator+ (const TType &b) const{return TType(this->Value() + b.Value());}TType operator- (const TType &b) const{return TType(this->Value() - b.Value());}TType operator* (const TType &b) const{return TType(this->Value() * b.Value());}TType operator/ (const TType &b) const{return TType(this->Value() / b.Value());}TType& operator+= (const TType &b){Value() += b.Value();return *this;}TType& operator-= (const TType &b){Value() -= b.Value();return *this;}TType& operator*= (const TType &b){Value() *= b.Value();return *this;}TType& operator/= (const TType &b){Value() /= b.Value();return *this;}TType& operator++ (){Value()++;return *this;}TType& operator-- (){Value()--;return *this;}// Extended Math Operationstemplate <typename T>T Divide(const TType &b){return ((T)this->Value()) / ((T)b.Value());}// Logic Operationsbool operator< (const TType &b) const {return this->Value() < b.Value();}bool operator<= (const TType &b) const {return this->Value() <= b.Value();}bool operator> (const TType &b) const {return this->Value() > b.Value();}bool operator>= (const TType &b) const {return this->Value() >= b.Value();}bool operator== (const TType &b) const {return this->Value() == b.Value();}bool operator!= (const TType &b) const {return this->Value() != b.Value();}private:T m_value;
};typedef uint8_t uint8;
typedef uint16_t uint16;
typedef uint32_t uint32;
typedef int16_t int16;
typedef int32_t int32;typedef SNumeric<float, struct S__Frequency>      TFrequency;
typedef SNumeric<uint32, struct S__TimeMs>        TTimeMs;
typedef SNumeric<uint32, struct S__Samples>       TSamples;
typedef SNumeric<float, struct S__FractSamples>   TFractionalSamples;
typedef SNumeric<float, struct S__Decibels>       TDecibels;
typedef SNumeric<float, struct S__Amplitude>      TAmplitude;
typedef SNumeric<float, struct S__Phase>          TPhase;static const float c_pi = (float)M_PI;
static const float c_twoPi = c_pi * 2.0f;//=====================================================================================
// Structs
//=====================================================================================struct SSoundSettings
{TSamples        m_sampleRate;TTimeMs         m_lengthMs;TSamples        m_currentSample;
};struct SReverbTap
{TSamples    m_timeOffset;TAmplitude  m_feedback;
};class CMultitapReverb
{
public:CMultitapReverb(const std::vector<SReverbTap>& taps): m_sampleIndex(0){m_taps = taps;TSamples largestTimeOffset(0);std::for_each(m_taps.begin(), m_taps.end(),[&largestTimeOffset](const SReverbTap& tap){if (tap.m_timeOffset > largestTimeOffset)largestTimeOffset = tap.m_timeOffset;});if (largestTimeOffset.Value() == 0)return;m_samples.resize(largestTimeOffset.Value()+1);std::fill(m_samples.begin(), m_samples.end(), TAmplitude(0.0f));}TAmplitude ProcessSample(TAmplitude sample){if (m_samples.size() == 0)return sample;TAmplitude outSample = sample;std::for_each(m_taps.begin(), m_taps.end(),[&outSample, this](const SReverbTap& tap){size_t tapSampleIndex;if (tap.m_timeOffset.Value() > m_sampleIndex)tapSampleIndex = m_samples.size() - 1 - (tap.m_timeOffset.Value() - m_sampleIndex);elsetapSampleIndex = m_sampleIndex - tap.m_timeOffset.Value();outSample += m_samples[tapSampleIndex] * tap.m_feedback;});m_samples[m_sampleIndex] = outSample;m_sampleIndex++;if (m_sampleIndex >= m_samples.size())m_sampleIndex = 0;return outSample;}private:std::vector<SReverbTap> m_taps;std::vector<TAmplitude> m_samples;size_t                  m_sampleIndex;
};inline TDecibels AmplitudeToDB(TAmplitude volume)
{return TDecibels(log10(volume.Value()));
}inline TAmplitude DBToAmplitude(TDecibels dB)
{return TAmplitude(pow(10.0f, dB.Value() / 20.0f));
}TSamples SecondsToSamples(const SSoundSettings &s, float seconds)
{return TSamples((int)(seconds * (float)s.m_sampleRate.Value()));
}TSamples MilliSecondsToSamples(const SSoundSettings &s, float milliseconds)
{return SecondsToSamples(s, milliseconds / 1000.0f);
}TTimeMs SecondsToMilliseconds(float seconds)
{return TTimeMs((uint32)(seconds * 1000.0f));
}TFrequency Frequency(float octave, float note)
{return TFrequency((float)(440 * pow(2.0, ((double)((octave - 4) * 12 + note)) / 12.0)));
}template <typename T>
T AmplitudeToAudioSample(const TAmplitude& in)
{const T c_min = std::numeric_limits<T>::min();const T c_max = std::numeric_limits<T>::max();const float c_minFloat = (float)c_min;const float c_maxFloat = (float)c_max;float ret = in.Value() * c_maxFloat;if (ret < c_minFloat)return c_min;if (ret > c_maxFloat)return c_max;return (T)ret;
}TAmplitude GetLerpedAudioSample(const std::vector<TAmplitude>& samples, TFractionalSamples& index)
{uint32 a = (uint32)floor(index.Value());uint32 b = a + 1;float fract = index.Value() - floor(index.Value());float ampA = 0.0f;if (a >= 0 && a < samples.size())ampA = samples[a].Value();float ampB = 0.0f;if (b >= 0 && b < samples.size())ampB = samples[b].Value();return TAmplitude(fract * ampB + (1.0f - fract) * ampA);
}void NormalizeSamples(std::vector<TAmplitude>& samples, TAmplitude maxAmplitude)
{if (samples.size() == 0)return;TAmplitude largestAbsVal = TAmplitude(abs(samples.front().Value()));std::for_each(samples.begin() + 1, samples.end(), [&largestAbsVal](const TAmplitude &a){TAmplitude absVal = TAmplitude(abs(a.Value()));if (absVal > largestAbsVal)largestAbsVal = absVal;});largestAbsVal /= maxAmplitude;if (largestAbsVal <= TAmplitude(0.0f))return;std::for_each(samples.begin(), samples.end(), [&largestAbsVal](TAmplitude &a){a /= largestAbsVal;if (a >= TAmplitude(1.0f)){int ijkl = 0;}});
}void ResampleData(std::vector<TAmplitude>& samples, int srcSampleRate, int destSampleRate)
{if (srcSampleRate == destSampleRate)return;float fResampleRatio = (float)destSampleRate / (float)srcSampleRate;int nNewDataNumSamples = (int)((float)samples.size() * fResampleRatio);std::vector<TAmplitude> newSamples;newSamples.resize(nNewDataNumSamples);for (int nIndex = 0; nIndex < nNewDataNumSamples; ++nIndex)newSamples[nIndex] = GetLerpedAudioSample(samples, TFractionalSamples((float)nIndex / fResampleRatio));std::swap(samples, newSamples);
}void ChangeNumChannels(std::vector<TAmplitude>& samples, int nSrcChannels, int nDestChannels)
{if (nSrcChannels == nDestChannels ||nSrcChannels < 1 || nSrcChannels > 2 ||nDestChannels < 1 || nDestChannels > 2){return;}if (nDestChannels == 2){std::vector<TAmplitude> newSamples;newSamples.resize(samples.size() * 2);for (size_t index = 0; index < samples.size(); ++index){newSamples[index * 2] = samples[index];newSamples[index * 2 + 1] = samples[index];}std::swap(samples, newSamples);}else{std::vector<TAmplitude> newSamples;newSamples.resize(samples.size() / 2);for (size_t index = 0; index < samples.size() / 2; ++index)newSamples[index] = samples[index * 2] + samples[index * 2 + 1];std::swap(samples, newSamples);}
}float PCMToFloat(unsigned char *pPCMData, int nNumBytes)
{switch (nNumBytes){case 1:{uint8 data = pPCMData[0];return (float)data / 255.0f;}case 2:{int16 data = pPCMData[1] << 8 | pPCMData[0];return ((float)data) / ((float)0x00007fff);}case 3:{int32 data = pPCMData[2] << 16 | pPCMData[1] << 8 | pPCMData[0];return ((float)data) / ((float)0x007fffff);}case 4:{int32 data = pPCMData[3] << 24 | pPCMData[2] << 16 | pPCMData[1] << 8 | pPCMData[0];return ((float)data) / ((float)0x7fffffff);}default:{return 0.0f;}}
}struct SMinimalWaveFileHeader
{unsigned char m_szChunkID[4];      //0uint32        m_nChunkSize;        //4unsigned char m_szFormat[4];       //8unsigned char m_szSubChunk1ID[4];  //12uint32        m_nSubChunk1Size;    //16uint16        m_nAudioFormat;      //18uint16        m_nNumChannels;      //20uint32        m_nSampleRate;       //24uint32        m_nByteRate;         //28uint16        m_nBlockAlign;       //30uint16        m_nBitsPerSample;    //32unsigned char m_szSubChunk2ID[4];  //36uint32        m_nSubChunk2Size;    //40};template <typename T>
bool WriteWaveFile(const char *fileName, const std::vector<TAmplitude> &samples, const SSoundSettings &sound)
{//open the file if we canFILE *file = fopen(fileName, "w+b");if (!file)return false;//calculate bits per sample and the data sizeconst int32 bitsPerSample = sizeof(T) * 8;const int dataSize = samples.size() * sizeof(T);SMinimalWaveFileHeader waveHeader;//fill out the main chunkmemcpy(waveHeader.m_szChunkID, "RIFF", 4);waveHeader.m_nChunkSize = dataSize + 36;memcpy(waveHeader.m_szFormat, "WAVE", 4);//fill out sub chunk 1 "fmt "memcpy(waveHeader.m_szSubChunk1ID, "fmt ", 4);waveHeader.m_nSubChunk1Size = 16;waveHeader.m_nAudioFormat = 1;waveHeader.m_nNumChannels = 1;waveHeader.m_nSampleRate = sound.m_sampleRate.Value();waveHeader.m_nByteRate = sound.m_sampleRate.Value() * 1 * bitsPerSample / 8;waveHeader.m_nBlockAlign = 1 * bitsPerSample / 8;waveHeader.m_nBitsPerSample = bitsPerSample;//fill out sub chunk 2 "data"memcpy(waveHeader.m_szSubChunk2ID, "data", 4);waveHeader.m_nSubChunk2Size = dataSize;//write the headerfwrite(&waveHeader, sizeof(SMinimalWaveFileHeader), 1, file);//write the wave data itself, converting it from float to the type specifiedstd::vector<T> outSamples;outSamples.resize(samples.size());for (size_t index = 0; index < samples.size(); ++index)outSamples[index] = AmplitudeToAudioSample<T>(samples[index]);fwrite(&outSamples[0], dataSize, 1, file);//close the file and return successfclose(file);return true;
}bool ReadWaveFile(const char *fileName, std::vector<TAmplitude>& samples, int32 sampleRate)
{//open the file if we canFILE *File = fopen(fileName, "rb");if (!File){return false;}//read the main chunk ID and make sure it's "RIFF"char buffer[5];buffer[4] = 0;if (fread(buffer, 4, 1, File) != 1 || strcmp(buffer, "RIFF")){fclose(File);return false;}//read the main chunk sizeuint32 nChunkSize;if (fread(&nChunkSize, 4, 1, File) != 1){fclose(File);return false;}//read the format and make sure it's "WAVE"if (fread(buffer, 4, 1, File) != 1 || strcmp(buffer, "WAVE")){fclose(File);return false;}long chunkPosFmt = -1;long chunkPosData = -1;while (chunkPosFmt == -1 || chunkPosData == -1){//read a sub chunk id and a chunk size if we canif (fread(buffer, 4, 1, File) != 1 || fread(&nChunkSize, 4, 1, File) != 1){fclose(File);return false;}//if we hit a fmtif (!strcmp(buffer, "fmt ")){chunkPosFmt = ftell(File) - 8;}//else if we hit a dataelse if (!strcmp(buffer, "data")){chunkPosData = ftell(File) - 8;}//skip to the next chunkfseek(File, nChunkSize, SEEK_CUR);}//we'll use this handy struct to load in SMinimalWaveFileHeader waveData;//load the fmt part if we canfseek(File, chunkPosFmt, SEEK_SET);if (fread(&waveData.m_szSubChunk1ID, 24, 1, File) != 1){fclose(File);return false;}//load the data part if we canfseek(File, chunkPosData, SEEK_SET);if (fread(&waveData.m_szSubChunk2ID, 8, 1, File) != 1){fclose(File);return false;}//verify a couple things about the file dataif (waveData.m_nAudioFormat != 1 ||       //only pcm datawaveData.m_nNumChannels < 1 ||        //must have a channelwaveData.m_nNumChannels > 2 ||        //must not have more than 2waveData.m_nBitsPerSample > 32 ||     //32 bits per sample maxwaveData.m_nBitsPerSample % 8 != 0 || //must be a multiple of 8 biteswaveData.m_nBlockAlign > 8)           //blocks must be 8 bytes or lower{fclose(File);return false;}//figure out how many samples and blocks there are total in the source dataint nBytesPerBlock = waveData.m_nBlockAlign;int nNumBlocks = waveData.m_nSubChunk2Size / nBytesPerBlock;int nNumSourceSamples = nNumBlocks * waveData.m_nNumChannels;//allocate space for the source samplessamples.resize(nNumSourceSamples);//maximum size of a block is 8 bytes.  4 bytes per samples, 2 channelsunsigned char pBlockData[8];memset(pBlockData, 0, 8);//read in the source samples at whatever sample rate / number of channels it might be inint nBytesPerSample = nBytesPerBlock / waveData.m_nNumChannels;for (int nIndex = 0; nIndex < nNumSourceSamples; nIndex += waveData.m_nNumChannels){//read in a blockif (fread(pBlockData, waveData.m_nBlockAlign, 1, File) != 1){fclose(File);return false;}//get the first samplesamples[nIndex].Value() = PCMToFloat(pBlockData, nBytesPerSample);//get the second sample if there is oneif (waveData.m_nNumChannels == 2){samples[nIndex + 1].Value() = PCMToFloat(&pBlockData[nBytesPerSample], nBytesPerSample);}}//re-sample the sample rate up or down as neededResampleData(samples, waveData.m_nSampleRate, sampleRate);//handle switching from mono to stereo or vice versaChangeNumChannels(samples, waveData.m_nNumChannels, 1);return true;
}

参阅一:计算思维

参阅二:亚图跨际

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/pingmian/3508.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Oracle导出导入dmp等文件类型的多表数据的常用方法、遇见的常见问题和解决办法(exp无效sql???)

使用PLSQL执行导出表数据的时候有两种方法 1、使用Oracle命令【imp--exp】【impdp--expdp】 但是如果你的本机没有安装有Oracle数据库&#xff0c;使用的instant client远程连接服务器上的Oracle数据库时候&#xff0c;你没有Oracle数据库带有的exp.exe、imp.exe等扩展文件&a…

有没有降低三维设计软件版权成本的方案?

企业是否都苦恼三维设计软件购买成本太高了&#xff1f;如投入商业使用&#xff0c;三维设计软件一般涉及正版的版权购买。但是&#xff0c;正版的版权购买费用较贵&#xff0c;且支持一台电脑使用。企业每年购买正版三维设计软件都需要很大一笔支出&#xff0c;随着企业不断发…

Android kotlin 协程异步async与await介绍与使用

一、介绍 在kotlin语言中&#xff0c;协程是一个处理耗时的操作&#xff0c;但是很多人都知道同步和异步&#xff0c;但是不知道该如何正确的使用&#xff0c;如果处理不好&#xff0c;看似异步&#xff0c;其实在runBloacking模块中使用的结果是同步的。 针对如何同步和如何异…

day04 51单片机-矩阵按键

1 矩阵按键 1.1 需求描述 本案例实现以下功能&#xff1a;按下矩阵按键SW5到SW20&#xff0c;数码管会显示对应的按键编号。 1.2 硬件设计 1.2.1 硬件原理图 1.2.2 矩阵按键原理 1.3软件设计 1&#xff09;Int_MatrixKeyboard.h 在项目的Int目录下创建Int_MatrixKeyboard…

Acer宏碁掠夺者战斧300笔记本电脑PH315-52工厂模式原装Win10系统安装包 恢复出厂开箱状态 带恢复重置

宏碁掠夺者PH315-52原厂Windows10工厂包镜像下载&#xff0c;预装oem系统 链接&#xff1a;https://pan.baidu.com/s/1grmJzz6nW1GOaImY_ymXGw?pwdi286 提取码&#xff1a;i286 原厂W10系统自带所有驱动、PredatorSense风扇键盘控制中心、Office办公软件、出厂主题壁纸、系统…

C语言简易类json格式解析

在使用MQTT时&#xff0c;获取的数据基本上都是json格式的&#xff0c;虽然C语言也可以添加第三方的解析库&#xff0c;但有些资源少的单片机用着还是挺吃力的&#xff0c;所以自己简单写了一个从json格式中获取数据的&#xff0c;说白了就是一个字符串查找。就比如下面这一段 …

Scrapy 爬虫教程:从原理到实战

Scrapy 爬虫教程&#xff1a;从原理到实战 一、Scrapy框架简介 Scrapy是一个由Python开发的高效网络爬虫框架&#xff0c;用于从网站上抓取数据并提取结构化信息。它采用异步IO处理请求&#xff0c;能够同时发送多个请求&#xff0c;极大地提高了爬虫效率。 二、Scrapy运行原…

如何使用PHP进行JSON编码和解码?

如何使用PHP进行JSON编码和解码&#xff1f; 使用PHP进行JSON编码和解码是开发过程中非常常见的任务。JSON&#xff08;JavaScript Object Notation&#xff09;是一种轻量级的数据交换格式&#xff0c;它使得人们能够很容易地阅读和编写&#xff0c;同时也使得机器能够解析和…

阐述 Git 命令 reset 和 revert

1 概述 由于某次或某几次提交的代码污染了远程分支&#xff0c;需要对远程分支代码进行恢复操作&#xff0c;此时可以通过 git 的 reset 和 revert 命令进行恢复。 HEAD 是指向当前分支的最新提交的指针 &#xff0c;每一次提交代码都会产生一个 commit id 来标识工作区的变更…

Elasticsearch单机部署(Linux)

1. 准备环境 本文中Elasticsearch版本为7.12.0&#xff0c;JDK版本为1.8.0&#xff0c;Linux环境部署。 扩展&#xff1a; &#xff08;1&#xff09;查看Elasticsearch对应的常用的jdk版本如下&#xff1a;&#xff08;详情可看官网的支持一览表&#xff09; Elasticsearch a…

贪吃蛇项目实践!(下)

NextIsFood 比较蛇指向的节点和食物指向的节点是否相同 //pSnakeNode psn 是下⼀个节点的地址 //pSnake ps 维护蛇的指针 int NextIsFood(pSnakeNode psn, pSnake ps) {return (psn->x ps->_pFood->x) && (psn->y ps->_pFood->y); }EatFood //…

机器学习 -- 分类问题

场景 探讨了一个回归任务——预测住房价格&#xff0c;用到了线性回归、决策树以及随机森林等各种算法。本次中我们将把注意力转向分类系统。我们曾经对MNIST进行了分类任务&#xff0c;这次我们重新回到这里&#xff0c;细致的再来一次。 开始 获取数据 Scikit-Learn提供了…

ELK 日志分析系统(二)

一、ELK Kibana 部署 1.1 安装Kibana软件包 #上传软件包 kibana-5.5.1-x86_64.rpm 到/opt目录 cd /opt rpm -ivh kibana-5.5.1-x86_64.rpm 1.2 设置 Kibana 的主配置文件 vim /etc/kibana/kibana.yml --2--取消注释&#xff0c;Kiabana 服务的默认监听端口为5601 server.po…

正点原子[第二期]Linux之ARM(MX6U)裸机篇学习笔记-6

前言&#xff1a; 本文是根据哔哩哔哩网站上“正点原子[第二期]Linux之ARM&#xff08;MX6U&#xff09;裸机篇”视频的学习笔记&#xff0c;在这里会记录下正点原子 I.MX6ULL 开发板的配套视频教程所作的实验和学习笔记内容。本文大量引用了正点原子教学视频和链接中的内容。…

nodejs连接oracle批量更新数据测试

条件&#xff1a;oracle数据库,数据表20w。所有测试都在本机执行&#xff0c;保持相同的网络带宽。因为机器性能和更新速度问题&#xff0c;这里只测试更新1w数据。 方式1&#xff1a;nodejs代码程序块更新 const sql "declare i number: 0;begin" " while i …

为什么分类问题不能使用mse损失函数,更容易理解版本

分类问题通常不适合使用均方误差&#xff08;Mean Squared Error&#xff0c;MSE&#xff09;损失函数&#xff0c;原因如下&#xff1a; 1.输出差异&#xff1a; 输出差异的度量不同&#xff1a;MSE损失函数是基于预测值和真实值之间的差异的平方和进行计算的&#xff0c;适…

一分钟教你学浪视频怎么存到网盘里面#小浪助手

只需要将学浪视频下载下来,然后利用网盘的上传功能,就能将学浪视频存到网盘里面 那么怎么下载学浪视频呢?其实这里可以借助一个工具:小浪助手 小浪助手我已经打包好了,有需要的自己取一下 学浪下载器链接&#xff1a;https://pan.baidu.com/s/1nyjXc88BWbF8jnfQWUGLZQ?pwd…

Python爱心代码

爱心效果图&#xff1a; 完整代码&#xff1a; import random from math import sin, cos, pi, log from tkinter import *# 定义画布尺寸和颜色 CANVAS_WIDTH 640 CANVAS_HEIGHT 480 CANVAS_CENTER_X CANVAS_WIDTH / 2 CANVAS_CENTER_Y CANVAS_HEIGHT / 2 IMAGE_ENLARG…

Pandabuy代采模式独立站打造攻略,轻松开启全球电商新篇章!

Pandabuy是一个知名的代采平台&#xff0c;老外想要购买1688的物美价廉的商品&#xff0c;但是受限于物流和支付&#xff0c;老外没有大陆支付宝&#xff0c;另外1688不支持海外物流。作为跨境出口的代采平台&#xff0c;pandabuy解决了这个问题 通过对接1688的搜索api&#xf…

今日早报 每日精选15条新闻简报 每天一分钟 知晓天下事 4月26日,星期五

每天一分钟&#xff0c;知晓天下事&#xff01; 2024年4月26日 星期五 农历三月十八 1、 神舟十八号载人飞船发射取得圆满成功&#xff0c;3名航天员与神舟十七号乘组实现“太空会师”。 2、 工信部征求意见&#xff1a;电动自行车拟禁用车载充电器。 3、 两部门&#xff1a;调…