想计算y在区间9-1​0上的最大幅值,有大​佬会改一下么。

clc
clear
a=[]
x=0:1:10
y=sin(x)
a=[a,(max(y(end-1:end,1))-min(y1(end-1:end,1)))/2]
a
%出错显示,下标索引必须为正整数类型或逻辑类型。

 채택된 답변

cgjsrey
cgjsrey 2023년 5월 21일

0 개 추천

仅供参考
clc
clear
a=[];
x=0:1:10;
y=sin(x);
a=[a,(max(y(1,end-1:end))-min(y(1,end-1:end)))/2]
a

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Matrix Indexing에 대해 자세히 알아보기

태그

질문:

2023년 5월 21일

답변:

2023년 5월 21일

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!