What is the meaning of [0.0;-1.5] in the following lines?
7 次查看(过去 30 天)
显示 更早的评论
Tcenter = interpolateTemperature(result,[0.0;-1.5],1:numel(tlist));
Touter = interpolateTemperature(result,[0.2;-1.5],1:numel(tlist));
What does it mean by [0.0;-1.5]?
1 个评论
Stephen23
2020-8-27
"What does it mean by [0.0;-1.5]?"
Very basic MATLAB concepts, such as how to create vectors and matrices, are explained in the introductory tutorials:
采纳的回答
Michael Croucher
2020-8-27
编辑:Michael Croucher
2020-8-27
[0.0;-1.5] is a column vector with the two values 0.0 and -1.5. Mathematically, it looks like this:
2 个评论
Rik
2020-8-27
Commas separte inputs in Matlab. So both the variable result and the vector [0;1.5] are inputs to the interpolateTemperature function.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Geometry and Mesh 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!