photo

ClementJ


Last seen: 대략 2개월 전 2022년부터 활동

Followers: 0   Following: 0

Programming Languages:
MATLAB
Spoken Languages:
French

통계학

All
  • Solver
  • First Answer

배지 보기

Feeds

보기 기준

답변 있음
How to make text conditional statements
Hi, Maybe use '\n' in your line 2: prompt = 'Enter Bady Part : \n'; g = input(prompt,'s'); if g == 'hand' dis...

대략 2년 전 | 0

문제를 풀었습니다


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

대략 2년 전

답변 있음
using for loops to calculate compound interest with yearly contributions
Hi, I think you need to add the cmp value in your loop and I think it is : year_cmp = year_cmp + 1; y(year_cmp) = (P*(1+r)); ...

대략 2년 전 | 0

답변 있음
How can I create a unique matrix by removing rows with similar elements?
Hi, Maybe, you can use: %% load A data load('A.mat') %% process sum_A = sum(A,2); [~,ia,~] = unique(sum_A); %% change...

대략 2년 전 | 0