Hallo can anyone help me? If I've a point x ,how to calculate just the specific value of f(x) in matlab?

Antworten (1)

ahmed
ahmed am 28 Okt. 2013

0 Stimmen

if you mean function with input (ex:R) and output (ex:X)
use this example :
function [x] = cal(r)
% This is an example function.
% I have no idea what r or x are.
x = r.*sin(r);
(X is the output) (cal is the function to be called) (R= is the input)

Kategorien

Mehr zu MATLAB finden Sie in Hilfe-Center und File Exchange

Tags

Gefragt:

am 28 Okt. 2013

Beantwortet:

am 28 Okt. 2013

Community Treasure Hunt

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

Start Hunting!

Translated by