Can someone help me convert C++ to Matlab

조회 수: 1 (최근 30일)
Omar Rodriguez Hernandez
Omar Rodriguez Hernandez 2019년 12월 3일
편집: James Tursa 2019년 12월 3일
Help please
I've tried how to do it but I don't get it
  댓글 수: 1
Raj
Raj 2019년 12월 3일
Looks straightforward. You have mentioned that you have tried something. Can you post that? It doesn't matter if its wrong. We'll take it from there.

댓글을 달려면 로그인하십시오.

답변 (1개)

James Tursa
James Tursa 2019년 12월 3일
편집: James Tursa 2019년 12월 3일
The += and *= operators behave as follows:
total_salary += daily_salary;
becomes
total_salary = total_salary + daily_salary;
and
daily_salary *= INCREMENTAL_AMOUNT;
becomes
daily_salary = daily_salary * INCREMENTAL_AMOUNT;
The rest is just putting in the value checks and displaying values using MATLAB syntax.

카테고리

Help CenterFile Exchange에서 Introduction to Installation and Licensing에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by