Filter löschen
Filter löschen

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

2 Ansichten (letzte 30 Tage)
Murathan Cuya
Murathan Cuya am 18 Jun. 2020
Bearbeitet: Murathan Cuya am 21 Jun. 2020
please write MATLAB code to find the result of equation
ı need codes and matlab script
  2 Kommentare
darova
darova am 18 Jun. 2020
Have you tried something? What problems are facing?
Atul Upadhyay
Atul Upadhyay am 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.

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Murathan Cuya
Murathan Cuya am 19 Jun. 2020
Bearbeitet: Murathan Cuya am 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)

Weitere Antworten (1)

Atul Upadhyay
Atul Upadhyay am 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.

Kategorien

Mehr zu Graphics Object Programming finden Sie in Help Center und File Exchange

Produkte


Version

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by