matlab y=sin(x) - 2/π*(x)函数绘制

@[TOC](matlab y=sin(x) - 2/π*(x)函数绘制)

y=sin(x) - 2/π*(x)

clc;
clear;
close all;
x_axis_length = 10;
y_axis_length = 10;
% 创建 x 值向量
x_positive = linspace(0.1, 10, 1000); % 正半轴上的 x 值
x_negative = linspace(-10, -0.1, 1000); % 负半轴上的 x 值

% 计算正半轴和负半轴上的 y 值
y_positive = sin(x_positive) - 2./pi*x_positive;
y_negative = sin(x_negative) - 2./pi*x_negative;

% 绘制图像
figure;
plot(x_positive, y_positive, 'b', 'LineWidth', 1.5);
hold on;
plot(x_negative, y_negative, 'r', 'LineWidth', 1.5);
xlabel('x');
ylabel('y');
title('Plot of y = sin(x) - 2/π*(x)');
legend('Positive Half-axis', 'Negative Half-axis');
grid on;

% 设置 x 轴和 y 轴的范围
xlim([-x_axis_length, x_axis_length]); 
ylim([-y_axis_length, y_axis_length]); % 显示坐标轴 x 轴和 y 轴

绘制结果

相关推荐
小喵要摸鱼2 小时前
MATLAB 使用教程 —— 矩阵和数组
matlab·矩阵
金星娃儿2 小时前
MATLAB基础知识笔记——(矩阵的运算)
笔记·matlab·矩阵
哈听星19 小时前
解非线性方程组
数学建模·matlab
亚图跨际20 小时前
MATLAB和R及Python伪时间分析
python·matlab·r语言·伪时间分析
fanxbl95721 小时前
LVQ 神经网络的 MATLAB 函数详解
人工智能·神经网络·matlab
吃葡萄不图葡萄皮1 天前
3D绘制动态爱心Matlab
开发语言·matlab
远望清一色1 天前
基于MATLAB边缘检测博文
开发语言·算法·matlab
远望清一色1 天前
基于MATLAB的图片中文字的提取及识别
算法·matlab
黑曼巴、。;2 天前
直方图均衡化及Matlab实现
图像处理·计算机视觉·matlab
慕容复之巅2 天前
基于MATLAB+opencv人脸疲劳检测
开发语言·opencv·matlab