photo

ClementJ


Last seen: 2 months 前 自 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 years 前 | 0

已回答
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 years 前 | 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 years 前 | 0