photo

mansour torabi


Last seen: 대략 1년 전 2021년부터 활동

Followers: 0   Following: 0

메시지

Started my studying in Mechanical Engineering (BSc) and Mechatronics (MSc). But always had a passion for Programming I write codes professionally in MATLAB, C#, C/C++, Python

Programming Languages:
Python, C++, C, C#, MATLAB, SQL, HTML, CSS, Arduino, Visual Basic
Spoken Languages:
English

통계

All
MATLAB Answers

0 질문
6 답변

File Exchange

5 파일

Cody

9 문제
1158 답안

순위
3,409
of 300,813

평판
16

참여
0 질문
6 답변

답변 채택
0.00%

획득한 표
7

순위
4,434 of 21,086

평판
325

평균 평점
2.80

참여
5 파일

다운로드 수
16

ALL TIME 다운로드 수
2857

순위
76
of 171,169

참여
9 문제
1158 답안

점수
13,488

배지 수
23

참여
0 게시물

참여
0 공개 채널

평균 평점

참여
0 하이라이트

평균 좋아요 수

  • Treasure Hunt Participant
  • First Answer
  • Divisible by x Master
  • Draw Letters
  • 5-Star Galaxy Level 1
  • Personal Best Downloads Level 3
  • Explorer
  • Speed Demon
  • Creator
  • Scholar
  • Introduction to MATLAB Master
  • CUP Challenge Master

배지 보기

Feeds

보기 기준

답변 있음
How to use Timer Callback in App Designer?
In App Designer: In Properties section, define a Variable to hold time object: properties (Access = public) MyTim...

4년 초과 전 | 4

답변 있음
How to convert a data Table from .mat to .csv
In matlab, to write a table to a csv file, use: load('YourTableData.mat') writetable(YourTableData, 'FileName.csv')

4년 초과 전 | 2

답변 있음
Is there a built-in way to build a GET url in Matlab from a set of parameters?
Yes, there is! To create a URI query string form structure variable (or some other types): % Define your query Data as a struc...

4년 초과 전 | 0

답변 있음
Assign values to a structure using App designer
Simply just use str2double function: BC.theta_res = str2double(app.theta_resEditField_3.Value);

4년 초과 전 | 0

답변 있음
How can I use Structures array the App Designer Properties?
To define a structure variable as a public Propertey in the App Designer, use struct function: properties (Access = public...

4년 초과 전 | 0

답변 있음
How do i convert decimal to hexadecimal for floating points
You can simply write your own floating point to hex converter, like the following: x = 5329.675; % Floating point number ...

거의 5년 전 | 1