photo

ClementJ


Last seen: etwa 2 Monate vor Aktiv seit 2022

Followers: 0   Following: 0

Programming Languages:
MATLAB
Spoken Languages:
French

Statistik

All
  • Solver
  • First Answer

Abzeichen anzeigen

Feeds

Anzeigen nach

Beantwortet
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...

etwa 2 Jahre vor | 0

Beantwortet
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)); ...

etwa 2 Jahre vor | 0

Beantwortet
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...

etwa 2 Jahre vor | 0