photo

ClementJ


Last seen: 2 months ago Active since 2022

Followers: 0   Following: 0

Programming Languages:
MATLAB
Spoken Languages:
French

Statistics

All
  • Solver
  • First Answer

View badges

Feeds

View by

Answered
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 ago | 0

Answered
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 ago | 0

Answered
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 ago | 0