フィルターのクリア

Subscript indices must either be real positive integers or logicals with minimum and maximum values

1 回表示 (過去 30 日間)
I am trying to obtain the max and min. values from the following arrays:, however, I got the above mentioned error, any help
clear all;
clc;
syms y real;
y2min=double(solve(-246<.7500*-50+(y*.2500)+20.78,y));
y2max=double(solve(.7500*-50+(y*.2500)+20.78<40,y));
y3min=double(solve(-68<-.433*-50+(y*.4330)+20.78,y));
y3max=double(solve(-.433*-50+(y*.4330)+20.78<68,y));
min(:)=[y1min y2min y3min]
max(:)=[y1max y2max y3max]
min_n=max(min)
max_n=min(max(:))

採用された回答

KALYAN ACHARJYA
KALYAN ACHARJYA 2019 年 8 月 27 日
編集済み: KALYAN ACHARJYA 2019 年 8 月 27 日
Change the variable name min and max to different one say min1 or max1
min(:)=[y1min y2min y3min]
max(:)=[y1max y2max y3max]

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeCreating and Concatenating Matrices についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by