Borrar filtros
Borrar filtros

question about table command??

1 visualización (últimos 30 días)
mohamed
mohamed el 12 de Mzo. de 2016
Comentada: Dhanushka Sandaruwan el 14 de Abr. de 2017
hello im trying to put several elements in a table but each time i do it this result pops out
ans =
pwf3 q3
____________ ____________
[1x6 double] [1x6 double]
i want the table to display the number inside them
this is the code i used
pr=2500
start=input('enter the starting pressure ');
interval=input('enter interval ');
maxp=input('enter maximum pressure ');
pwf3=[start:interval:maxp];
q3=((1-(0.2*(pwf3/pr)))-(0.8*(pwf3/pr).^2))*1067;
table(pwf3,q3)
thank you

Respuesta aceptada

Star Strider
Star Strider el 12 de Mzo. de 2016
Transpose them to columns and it will display them as you want:
pwf3=[start:interval:maxp]'; % Transpose To A Column Vector
q3=((1-(0.2*(pwf3/pr)))-(0.8*(pwf3/pr).^2))*1067;
table(pwf3,q3)
pwf3 q3
____ ____
0.03 1067
0.04 1067
0.05 1067
0.06 1067
0.07 1067
0.08 1067
0.09 1067
0.1 1067
  3 comentarios
Star Strider
Star Strider el 12 de Mzo. de 2016
As always, my pleasure!

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Tables 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!

Translated by