How can I get data from evaluating a function, say y=x^2+5 and put it in table?
1 view (last 30 days)
Show older comments
Shreen El-Sapa
on 23 Sep 2021
Commented: the cyclist
on 23 Sep 2021
How can I get data from evaluating a function, say y=x^2+5 for x=0.1 to 0.9 for 50 points in between and put it in table?
0 Comments
Accepted Answer
the cyclist
on 23 Sep 2021
x = linspace(0.1,0.9,50);
y = x.^2+5;
tbl = table(y.');
3 Comments
the cyclist
on 23 Sep 2021
The semicolon at the end of a line of MATLAB code suppresses the output. So just leave the semicolon off of any line you want displayed to the command window.
x = linspace(0.1,0.9,50)
y = x.^2+5
tbl = table(y.')
More Answers (0)
See Also
Categories
Find more on Get Started with MATLAB in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!