How can I get data from evaluating a function, say y=x^2+5 and put it in table?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Shreen El-Sapa
el 23 de Sept. de 2021
Comentada: the cyclist
el 23 de Sept. de 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 comentarios
Respuesta aceptada
the cyclist
el 23 de Sept. de 2021
x = linspace(0.1,0.9,50);
y = x.^2+5;
tbl = table(y.');
3 comentarios
the cyclist
el 23 de Sept. de 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.')
Más respuestas (0)
Ver también
Categorías
Más información sobre Get Started with MATLAB en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!