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!