photo

Peter


Last seen: 8개월 전 2024년부터 활동

Followers: 0   Following: 0

통계학

  • Thankful Level 2

배지 보기

Feeds

보기 기준

질문


This statement is not inside any function.
function sumVector = computeSum(vector) sumVector = 0; for i = 1:length(vector) sumVector = sumVector + vector(i); end ...

8개월 전 | 답변 수: 1 | 0

1

답변

질문


File: myFact.m Line: 11 Column: 1. This statement is not inside any function.
function result = myFact(n) if n == 0 result = 1; else result = 1; for i = 1:n result = result * i; ...

8개월 전 | 답변 수: 1 | 0

1

답변

질문


Error using surf Z must be a matrix, not a scalar or vector.
I was trying to plot using the following code but i get this error. Please help me. Thank you! x=(0:0.1:pi); y=(0:0.1:pi); [X...

9개월 전 | 답변 수: 2 | 0

2

답변