![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/9027176_1611312460809.jpg)
mansour torabi
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
Python, C++, C, C#, MATLAB, SQL, HTML, CSS, Arduino, Visual Basic
Spoken Languages:
English
Feeds
제출됨
Matlab Euler-Lagrange Library
Using this library one can derive differential equations for any dynamic systems and solve response of the system for a given co...
7개월 전 | 다운로드 수: 9 |
![Thumbnail](/matlabcentral/mlc-downloads/downloads/5b226d06-5bd2-4607-ac96-137fc6ac561d/7a618b36-de3d-48c7-b7aa-074a3a5cf185/images/1631719990.png)
제출됨
Synchronous Generator P-Q Curve
Synchronous Generator Capability Curve (P-Q Curve) using MATLAB
거의 3년 전 | 다운로드 수: 22 |
![Thumbnail](/matlabcentral/mlc-downloads/downloads/e0e510d7-b2f7-4f6a-8a05-8184320cde28/e1f78e52-0f16-4afe-91fe-05ceec352458/images/1649964880.png)
답변 있음
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...
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...
3년 초과 전 | 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')
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')
3년 초과 전 | 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...
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...
3년 초과 전 | 0
답변 있음
Assign values to a structure using App designer
Simply just use str2double function: BC.theta_res = str2double(app.theta_resEditField_3.Value);
Assign values to a structure using App designer
Simply just use str2double function: BC.theta_res = str2double(app.theta_resEditField_3.Value);
3년 초과 전 | 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...
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...
3년 초과 전 | 0
문제를 풀었습니다
The Piggy Bank Problem
Given a cylindrical piggy bank with radius g and height y, return the bank's volume. [ g is first input argument.] Bonus though...
3년 초과 전
제출됨
Matlab Dynamic Programming
Dynamic Programming has been implemented in MATLAB using two illustrative example
3년 초과 전 | 다운로드 수: 7 |
![Thumbnail](/matlabcentral/mlc-downloads/downloads/a44d9baa-c7bf-46f2-9fcb-0d3653db26f4/67887ed9-1b23-48ec-9df7-74084cd0f291/images/1631733747.png)
제출됨
MATLAB Hammersley Sampling for Design of Experiments DOE
Hammersley Sampling method For Design of Experiments (DOE) has been implemented in MATLAB
3년 초과 전 | 다운로드 수: 4 |
![Thumbnail](/matlabcentral/mlc-downloads/downloads/cc8a28c7-b238-4df5-b1d4-89afa67f4d2e/60760bdd-af13-471d-bf42-38e8eea847a8/images/1631732400.png)
제출됨
MATLAB Truss Finite Element Analysis
2D Truss Analyzer toolbox can analyze any 2D trusses using Finite Element Method (FEM)
3년 초과 전 | 다운로드 수: 4 |
![Thumbnail](/matlabcentral/mlc-downloads/downloads/0e34ca8a-ae42-4e88-9a8f-e2fac7a8de10/e7f8b959-8762-4b9b-9135-975f9b64c074/images/1631721043.png)
문제를 풀었습니다
Distance walked 2D
Suppose you go from x-y coordinates [3,4] to [0,0] to [0,1] to [1,1], then you walked 7 units of distance.
3년 초과 전
문제를 풀었습니다
Calories in a slice of pizza?
The total calories C in a pizza is printed on its box. You know the angle A (degrees) of the slice you placed on your plate. Ple...
3년 초과 전
문제를 풀었습니다
CARDS PROBLEM
Read my mind and tell me the card number that I have now in my hands.
3년 초과 전
문제를 풀었습니다
Vector LCM
* Find Least Common Multiple of a given vector. * Need general solution as the test suite will be expanded. * Function Templa...
3년 초과 전
문제를 풀었습니다
Reverse CHECKBOX MATRIX with 69
Create a reverse checkbox matrix with '69'. Where the size is the input and output will be a square checkbox matrix. Exa...
3년 초과 전
문제를 풀었습니다
UICBioE240 2.7
Given two 3-element vectors x1 and x2, create a 3 x 3 x 3 matrix Y where (:,:,1) has all values of x1 * x2, (:,:,2) has all valu...
3년 초과 전
문제를 풀었습니다
UICBioE240 problem 1.7
Find the other two angles of a right triangle given the two of the sides. So if A = [1 1] B = [45 45]
3년 초과 전
문제를 풀었습니다
UICBioE240 problem 1.9
Swap the first and last columns of a matrix. So if A = [12 4 7; 5 1 4]; B = [7 4 12; 4 1 5]; ...
3년 초과 전
문제를 풀었습니다
UICBioE240 problem 1.1
Remove the middle row from a matrix, assuming # of rows is odd. So if A = [ 1 2 3; 4 5 6; 7 8 9] the...
3년 초과 전
문제를 풀었습니다
UICBioE240 problem 1.2
Convert a column vector into a row vector. So if A = [1; 2; 3] Then B = [ 1 2 3]
3년 초과 전
문제를 풀었습니다
UICBioE240 problem 1.3
Find the length of a vector. So if A = [1 1 1 1 1] Then B = 5
3년 초과 전
문제를 풀었습니다
UICBioE240 problem 1.5
Find the size of the matrix, then multiply both values by 10 and make it into a column vector. So if A = [ 1 2 3; ...
3년 초과 전
문제를 풀었습니다
UICBioE240 problem 1.6
Find the tangent line of a right triangle given the two of the sides. So if A = [1 1] B = sqrt(2)
3년 초과 전
문제를 풀었습니다
UICBioE240 problem 1.8
Given a list of grades in a class, write a script that gives the 2nd highest grade in the class and the average for the class. ...
3년 초과 전
문제를 풀었습니다
UICBioE240 problem 1.10
Find the number of cells in a bioreactor after a given time when doubling time is dd and initial number of cells is x. So if ...
3년 초과 전