easy math question for you but ı dont know to solve it.

2 views (last 30 days)
please write MATLAB code to find the result of equation
ı need codes and matlab script
  2 Comments
darova
darova on 18 Jun 2020
Have you tried something? What problems are facing?
Atul Upadhyay
Atul Upadhyay on 18 Jun 2020
To solve this problem efficiently you can use abs(x) function available in MATLAB.
So, the code is
y=abs(x);
You can refer to the following documentation for more details.

Sign in to comment.

Accepted Answer

Murathan Cuya
Murathan Cuya on 19 Jun 2020
Edited: Murathan Cuya on 21 Jun 2020
% Murathan CUYA
% 180401034 Aerospace engineering grade 1
clear
clc
x=input('tell me the number and ı will say you the answer :)type here=');
if(x<0)
y=-1*x;
else
y=x;
end
fprintf('the answer for the number that you typed is:')
disp(y)

More Answers (1)

Atul Upadhyay
Atul Upadhyay on 19 Jun 2020
To solve this problem efficiently you can use abs(x) function available in MATLAB.
So, the code is
y=abs(x);
You can refer to the following documentation for more details.

Categories

Find more on Graphics Object Programming in Help Center and File Exchange

Products


Release

R2018b

Community Treasure Hunt

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

Start Hunting!