How do i do x1<=x<=x2 in matlab?
Show older comments
I am trying to enter x1<=x<=x2 for matlab. however i am useless at coding and i cannot find a way to get this to work.
Please help
Accepted Answer
More Answers (1)
Hello Alexander
x=1:10;
%Let's say you want to find the values of x between 3 and 7
x1=3;
x2=7;
x>=3 & x<=7
x(x>=3 & x<=7)
1 Comment
Alexander
on 11 Apr 2023
Categories
Find more on Startup and Shutdown in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!