Filter löschen
Filter löschen

How to use subs with sym

2 Ansichten (letzte 30 Tage)
hadi
hadi am 17 Mär. 2015
Kommentiert: hadi am 17 Mär. 2015
Dear All,
I have the following code:
clc
clear all
close all
f=@(x,y)x^2+y;
f=sym(f);
out=subs(f,x,2)
Could you please tell me what should I do to prevent getting an error.
Thanks a lot.

Akzeptierte Antwort

Mischa Kim
Mischa Kim am 17 Mär. 2015
hadi, you need to define x as a symbolic variable
syms x y
f = @(x,y) x^2 + y;
f = sym(f);
out = subs(f,x,2)
out =
y + 4
  1 Kommentar
hadi
hadi am 17 Mär. 2015
Thank you so much I really appreciate your help.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by