Adarsh Ghimire
Followers: 0 Following: 0
Feeds
已回答
How to extract data from a text file and use logical if-else statement after some calculations and creating a new column in the data
data = load ('stress_data.txt'); col6 = (1/3).*(data(:,3)+data(:,4)+data(:,5));
How to extract data from a text file and use logical if-else statement after some calculations and creating a new column in the data
data = load ('stress_data.txt'); col6 = (1/3).*(data(:,3)+data(:,4)+data(:,5));
5 years 前 | 0
| 已接受
已回答
Incorrect dimensions for matrix multiplication
L = inv(phi ' * phi ) * phi' * Y; your phi matrix dimension has to transposed to multiply with y. As i went through your code,...
Incorrect dimensions for matrix multiplication
L = inv(phi ' * phi ) * phi' * Y; your phi matrix dimension has to transposed to multiply with y. As i went through your code,...
5 years 前 | 0