Group Abstract Group Abstract

Message Boards Message Boards

0
|
6.4K Views
|
2 Replies
|
0 Total Likes
View groups...
Share
Share this post:

beginner's struggle with programming

Posted 11 years ago
POSTED BY: Loft B
2 Replies
Posted 11 years ago

Hi Kay,

thank you very much for your advice. However, my problem is more on how to be able to, let's say, visualize the results rather than solving.

I have managed to solve them, but I would like to make a programm where every time i update the input variables (S, x, y, and ?) the ouput is also updated creating a 2D plot.

I hope you understand what I mean.

POSTED BY: Loft B

Make sure you know the difference between a definition := , an assignment = , a rule -> , and mathematical equal == like

equation1 = x1==2*S;

or define a function

x1[s_, a_] := 5 s + a^2;

Manipulate[x1[s, a], {s, 0, 1.}, {a, -1, 1}]

Plot[x1[s, 3], {s, 0, 1.}]

There are nice tutorials on the Wolfram website.

POSTED BY: Kay Herbert
Reply to this discussion
Community posts can be styled and formatted using the Markdown syntax.
Reply Preview
Attachments
Remove
or Discard