Determine y for a function with a symbolic variable x

조회 수: 2 (최근 30일)
Daniel Koch
Daniel Koch 2022년 5월 16일
편집: Torsten 2022년 5월 16일
I couldn't find the right solution for my question right now.
How can i determine the y-Value from my given equation at the point x?
Example, find the y-Value for x=0.
syms x;
y = x.^2;
y_0 = find(y, x==0) % that doesn't work

답변 (1개)

Torsten
Torsten 2022년 5월 16일
편집: Torsten 2022년 5월 16일
syms x
F(x) = x.^2;
F(0)

카테고리

Help CenterFile Exchange에서 Calculus에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by