Community Tip - Visit the PTCooler (the community lounge) to get to know your fellow community members and check out some of Dale's Friday Humor posts! X
I am doing an assignment on electrical engineering and differential equations, but i get a problem with "This value must be a function". I really cant see where the problem is and howto solve this. Mabye some of you can help to spot the error?
Solved! Go to Solution.
You defined V.in:=5V as a variable, but later use V.in as a function by writing V.in(t).
Thats the reason for the error message.
You have to decide, if V.in should be constant 5V or if it should depend on time!
Of course you can have both by defining V.in(t):=5 V 🙂
If Vin is not DC but Vin(t) you should do convolution.
You defined V.in:=5V as a variable, but later use V.in as a function by writing V.in(t).
Thats the reason for the error message.
You have to decide, if V.in should be constant 5V or if it should depend on time!
Of course you can have both by defining V.in(t):=5 V 🙂