
mansour torabi
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
Python, C++, C, C#, MATLAB, SQL, HTML, CSS, Arduino, Visual Basic
Spoken Languages:
English
Estadísticas
CLASIFICACIÓN
3.269
of 281.939
REPUTACIÓN
14
CONTRIBUCIONES
0 Preguntas
6 Respuestas
ACEPTACIÓN DE RESPUESTAS
0.00%
VOTOS RECIBIDOS
6
CLASIFICACIÓN
6.380 of 19.065
REPUTACIÓN
162
EVALUACIÓN MEDIA
2.60
CONTRIBUCIONES
5 Archivos
DESCARGAS
73
ALL TIME DESCARGAS
1441
CLASIFICACIÓN
67
of 134.328
CONTRIBUCIONES
9 Problemas
1158 Soluciones
PUNTUACIÓN
13.488
NÚMERO DE INSIGNIAS
23
CONTRIBUCIONES
0 Publicaciones
CONTRIBUCIONES
0 Público Canales
EVALUACIÓN MEDIA
CONTRIBUCIONES
0 Temas destacados
MEDIA DE ME GUSTA
Content Feed
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...
alrededor de 2 años hace | 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')
alrededor de 2 años hace | 1
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...
alrededor de 2 años hace | 0
Assign values to a structure using App designer
Simply just use str2double function: BC.theta_res = str2double(app.theta_resEditField_3.Value);
alrededor de 2 años hace | 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...
alrededor de 2 años hace | 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 ...
más de 2 años hace | 1