Community Profile

photo

mansour torabi


Last seen: Today 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
  • 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...

2年以上 前 | 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')

2年以上 前 | 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...

2年以上 前 | 0

回答済み
Assign values to a structure using App designer
Simply just use str2double function: BC.theta_res = str2double(app.theta_resEditField_3.Value);

2年以上 前 | 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...

2年以上 前 | 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 ...

約3年 前 | 1