Matlab Zeros, What type of matrix will I get from this?
1 view (last 30 days)
Show older comments
Hello, I am trying to understand a code that I using in my project, could someone tell me what do I get from this operation?
scan_trous_carres0=zeros((size_lambda*size_period*size_etching_depth*size_phi),9)
The 9 comes from a column of a text file that where I am getting data, I am trying to figure out why I am I multiplying the values inside the parenthesis and then I have the 9 outisde that parenthesis. What kind of matrix will I get?
2 Comments
dpb
on 26 Feb 2021
ADDENDUM:
Or, just set a breakpoint in the debugger and poke around when you get there...
Accepted Answer
Adam Danz
on 26 Feb 2021
Edited: Adam Danz
on 26 Feb 2021
> could someone tell me what do I get from this operation
Assuming your variables are scalar (1 value) or, when multipled, produce a scalar, scan_trous_carres0 will be an mx9 matrix of 0s where m is the result of the multiplication. Try it, as dpb suggested, or read about it in the documentation.
> I am trying to figure out why I am I multiplying the values inside the parenthesis
We certainly don't know why you're doing that 🙂. Apparently those 4 variables describe lengths or sizes of something and your output matrix needs to have that many rows. Are those values scalar? Vectors that, when combined, produce a scalar? We don't know.
> and then I have the 9 outisde that parenthesis
Well, apparently you need 9 columns of 0s. size(x,y) produces a matrix of 0s of size x*y.
> What kind of matrix will I get?
A matrix of 0s of class double
To confirm,
class(scan_trous_carres0)
More Answers (0)
See Also
Categories
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!