Clear Filters
Clear Filters

ASSIGNING A VALUE TO A VARIABLE

4 views (last 30 days)
please I want to know if it is possible to write an equation containing a variable before writing down the values. e.g V = a+3, before writing down the value of a.
  3 Comments
henry tochukwu
henry tochukwu on 2 Dec 2019
symbolic.
with an example please
thanks
henry tochukwu
henry tochukwu on 2 Dec 2019
I was given an assignment with the equation f = 5(t-32)/9 and was asked to insert the equation before assigning a value to the variable t.
i.e f = 5(t-32)/9
then assign a value to t, but it is not working
I want to know if there any process involved

Sign in to comment.

Accepted Answer

Walter Roberson
Walter Roberson on 2 Dec 2019
f = @(t) 5*(t-32)/9
or
syms t
f = 5*(t-32)/9
  9 Comments
Matt J
Matt J on 2 Dec 2019
@henry, if you consider your question answered, you should Accept-click the answer you prefer.
henry tochukwu
henry tochukwu on 7 Dec 2019
din't see accept on steven lords answer, so I had to accept another answer.

Sign in to comment.

More Answers (0)

Categories

Find more on Loops and Conditional Statements in Help Center and File Exchange

Tags

Products

Community Treasure Hunt

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

Start Hunting!