How to create table from formula

조회 수: 4 (최근 30일)
Krishnagopal V
Krishnagopal V 2021년 8월 5일
답변: Matt J 2021년 8월 5일
I want to create a table from an input A which is a matrix having 5 elements. I want to find variables x, y and z which are dependent on A by various formulas. I wanted to make a table showing the 5 values of input A along with respective values of x, y and z in each columns .

답변 (1개)

Matt J
Matt J 2021년 8월 5일
A=(1:5).';
x=A; y=10*A; z=100*A;
T=table(x,y,z)
T = 5×3 table
x y z _ __ ___ 1 10 100 2 20 200 3 30 300 4 40 400 5 50 500

카테고리

Help CenterFile Exchange에서 Tables에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by