intro to analytical programming -Matlab
이전 댓글 표시
We collect data for different type of milk. The data is recorded in a table T, with columns:
Country = [“CA”; “CA”; “US”;…]
state = [“ON”; “BC”; “OHIO”,…]; # province or state
fat= [1; 2; 3;…]; # fat percentage in %
quality = [2; 1; 5; …]; # the larger the better quality.
- Code to view the data for “CA” (Canada)
- Code to add one new type of milk, from MB, Canada, fat percentage is 10%, and quality is 4.
- Code to update the “state” column, change “BC” to “AB”.
- Code to find which milk has quality greater than 4.
- Code to find which milk has quality greater than 4 and from “ON”.
댓글 수: 1
Walter Roberson
2020년 10월 26일
what is your question?
답변 (1개)
Monisha Nalluru
2020년 10월 29일
For my understanding, you can select the required content Boolean Indexing
As an example
load patients.mat
T = table(Gender,Smoker,Height,Weight);
NewTable= T(T.Smoker==true,:) % return all the rows having Smoker = true
Similarly change according to usecase
카테고리
도움말 센터 및 File Exchange에서 Spreadsheets에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!