Multiplying spreadsheet column by variable
조회 수: 1 (최근 30일)
이전 댓글 표시
Hello can a spreadsheet column be multiplied by a variable of a function to generate a new column?
g.
채택된 답변
Azzi Abdelmalek
2016년 7월 30일
편집: Azzi Abdelmalek
2016년 7월 30일
A=randi(10,4,3) % Example
Cst=10
A=[1;2;3]
B=A(:,2)*Cst %Multiply column 2 by constant Cst
댓글 수: 5
Azzi Abdelmalek
2016년 7월 30일
편집: Azzi Abdelmalek
2016년 7월 30일
- You need to import your excell file using the Matlab function xlsread
- Use Matlab functions and operators to do the calculations you need, there are several Matlab functions, allowing you to do many kind of calculation and processing
- you can also link Excel to Matlab and use Matlab functions in Excel spreedsheet.
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Spreadsheets에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!