Borrar filtros
Borrar filtros

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

4 visualizaciones (últimos 30 días)
Murathan Cuya
Murathan Cuya el 18 de Jun. de 2020
Editada: Murathan Cuya el 21 de Jun. de 2020
please write MATLAB code to find the result of equation
ı need codes and matlab script
  2 comentarios
darova
darova el 18 de Jun. de 2020
Have you tried something? What problems are facing?
Atul Upadhyay
Atul Upadhyay el 18 de Jun. de 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.

Iniciar sesión para comentar.

Respuesta aceptada

Murathan Cuya
Murathan Cuya el 19 de Jun. de 2020
Editada: Murathan Cuya el 21 de Jun. de 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)

Más respuestas (1)

Atul Upadhyay
Atul Upadhyay el 19 de Jun. de 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.

Categorías

Más información sobre Graphics Object Programming en Help Center y File Exchange.

Productos


Versión

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by