How do I input a table column of values into a formula?
22 views (last 30 days)
Show older comments
Hello, I am new to MatLab. Here is some simple code I would greatly appreciate some help on.
I am given an excel spreadsheet of dates and a value of length (radius). I want to convert the radius from inches to centimeters by multiplying it by 2.54. Then I want to calculate areas using the radius, one set as inches^2 and one set as centimeters^2. I don't know how to input values from the excel column into formulas on MatLab. I get the error that operator '*' is not supported for operands of type 'table', but when I forgo '*' I get another error stating "Invalid Experssion".
clc;
close all;
clear all;
% Prepare DataSet
Trans = readtable('Data1.xlsx');
radius = Trans(:,4)
%convert radius [inches] to radius [centimeters], 1 in = 2.54 cm
newradius = (radius)*2.54 %[cm]
%Calculate area in cm^3 and in^3, area = pi*r^2
area_in = pi*(radius)^2 %[in^2]
area_cm = pi*(newradius)^2 %[cm^2]
0 Comments
Accepted Answer
Chris
on 6 Feb 2023
Edited: Chris
on 6 Feb 2023
The problem, as pointed out by Stephen, is that you are accessing the table data with parantheses, which creates another table. Your code will work if you use curly braces:
radius = Trans{:,4};
Here are some other options:
% Read in as a matrix, losing the variable names
Trans = readmatrix('Data1.xlsx')
radiusincm = Trans(:,4)*2.54
% Read in as a table, add new columns
Trans = readtable('Data1.xlsx');
Trans.radiusincm = 2.54*Trans.radius
% Read in as a table, refer to variable names
Trans = readtable('Data1.xlsx');
radiusincm = 2.54*Trans.radius
2 Comments
Stephen23
on 6 Feb 2023
"The problem is that you created a table called "radius" with a variable name "radius.""
The actual problem is that the OP used the wrong kind of indexing. To access table content use curly braces, not parentheses. The difference is explained in the MATLAB documentation:
More Answers (0)
See Also
Categories
Find more on Spreadsheets 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!