My code needs to take a URL address as a value However I have absolutley no clue as to how to utilise the dynamic input field function I am presently using:
t = Import[
"http://www.doc.gold.ac.uk//~ma302jh//RegressionExample.xls"];
However within my function I am using manipulate like so...
Manipulate[
With[{plane = DefineRSS[a, b, c]},
Show[Plot3D[plane, {x, -10, 1000}, {y, -10, 100},
AxesLabel -> {X, Y, Z}, PlotLabel -> rss,
PlotStyle ->
Directive[Yellow, Specularity[White, 20], Opacity[0.5]]],
...... etc .......
]
What Iwant to know is how to apply "{InputField[Dynamic[x]], Dynamic[x]}" in manipulate without creating errors, I would like to change the url in real time.