This value must be a function
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
This value must be a function
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.
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
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 🙂
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
If Vin is not DC but Vin(t) you should do convolution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
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 🙂
