Matching elements from two different matrixes.
1 次查看(过去 30 天)
显示 更早的评论
I have one matrix with fixed elements say Shut
I want to generete another matrix which contains the elements from Shut matrix having elements withing LowerLimit and UpperLimit range.
Shut = [152.40 228.60 304.80 381.00 457.20 533.40 609.60 685.80 762.00 838.20 914.40 990.60 1066.80]
LowerLimit=200
UpperLimit=500
expected result
a = [228.60 304.80 381.00 457.20]
0 个评论
采纳的回答
KALYAN ACHARJYA
2021-3-1
编辑:KALYAN ACHARJYA
2021-3-1
a=Shut(Shut>LowerLimit & Shut<UpperLimit)
a =
228.6000 304.8000 381.0000 457.2000
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Loops and Conditional Statements 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!