
Karim
Mechanical Engineer
MATLAB
Spoken Languages:
English
Professional Interests:
Optimization, Multibody Modeling, Finite Element Analysis (FEA)
Statistics
0 質問
52 回答
0 問題
53 解答
ランク
443
of 260,378
評価
150
貢献
0 質問
52 回答
回答採用率
0.00%
獲得投票数
15
ランク
5,177
of 111,837
貢献
0 問題
53 解答
スコア
658
バッジ数
4
貢献
0 投稿
貢献
0 パブリック チャネル
平均評価
貢献
0 Highlights
AVERAGE NO. OF LIKES
Content Feed
Oldest person in the room code not working
Hello, the issue is that the variable "name" is a char array in your case, hence it returns a char. It will be easier to store ...
3日 前 | 1
How to extract one data from various mat files to one txt file
assuming you want to append the data to the same text file, you can generate the name of the file in a loop: numFiles = 10; fo...
3日 前 | 1
| 採用済み
Plot 3D Animation
not sure witouth some example data, could you share for instance the struct holding the time history of the solution? As a tip,...
3日 前 | 1
| 採用済み
Create a 1D row vector (5,1) with middle elements = T.
I guess this was only a typographical error, where you inserted the variable 'T' into 'temperature', see below for the adjusted ...
3日 前 | 0
Contour plot over a specified region
Using the patch command u can plot as many triangular or rectangular shapes at the same time. Just build the grid (i.e. the 've...
3日 前 | 0
Matrix caculation about NAN and IFN
you can use indexing to avoid deviding by zero: A = [1 0 0; 1 1 0; 3 4 2; 2 3 1]; B = [1 0 2;1 0 14; 0 1 11; 1 1 10]; C = ze...
4日 前 | 0
| 採用済み
set values after certain value is exceeded to 0
One approach is to first look for the treshold value, build a logical array using that values and then use it together with an a...
4日 前 | 0
| 採用済み
how to plot deformation with value from ansys to matlab
you can use the patch command, see the method below coordinates = readmatrix("coordinates.csv"); displacements = readmatrix(...
7日 前 | 1
| 採用済み
Sort according to specific string contained in file name
You can try spliting the lists, then ordering them and then using the indixes to sort the original list: ListA = ["010822_AB030...
7日 前 | 0
| 採用済み
Extract certain numbers from a text file.
see below for one method to do this % read the file MyData = readmatrix('example_txt_file.txt'); % specify frequency valu...
7日 前 | 0
How to seprate elements based on value counts In MATLAB
If i understand it correctly, you want to keep only the unique values from each cell and find the overal "count" of each value? ...
8日 前 | 0
Truble codeing a diamond lattice
You need the additional subroutines. In this case "diamondLattice.m" and all other routines accompined by it... After a quick b...
8日 前 | 0
| 採用済み
Making a 3D plot and rotating it
@Sam Chak as requested a seperate answer to show the "patch" approach As mentioned in the comments, there remains a part to com...
8日 前 | 1
| 採用済み
How can I name the x-axis elements on a plot?
Here you go, you can overwrite the ticks with a string: % data M = [1 2 3 4 5 6 7 8 9 10 11 12]; Months = ["Jan","Feb","Mar",...
8日 前 | 1
| 採用済み
How to find the time between two spikes?
hello, you can use the "findpeaks" routine do achieve this, see below for the code best regards % first run the main code M...
8日 前 | 0
| 採用済み
Making a 3D plot and rotating it
To create a figure like the tower of hanoi, you can try something like the code below. Have fun :) edit: added the rotation a...
9日 前 | 1
How to plot graph between "W" and "r" for multiple values of "psi" on the same figure?
the easiest would be to "hold" the plot and loop over the values, see below % plotting graphs syms r psi_list = [0.1, 0.01, 0...
9日 前 | 0
| 採用済み
how to delete all row contain a 1's and how to delete a column contain 1's. Q=[3 1 1 0 0 1;1 3 1 0 1 0;1 1 3 1 0 0;0 0 1 3 1 1;0 1 0 1 3 1;1 0 0 1 1 3]
you can use some logic to find them: % using example data Q = [3 1 1 0 0 1;1 3 1 0 1 0;1 1 3 1 0 0;0 0 1 3 1 1;0 1 0 1 3 1;1...
9日 前 | 0
Is there a way to write values where the last digits of the value are the ones that separate them, but only use 6 digits, plus the exponent?
the only way I can think of that matlab can deal with such big numbers and precision is by treating them as strings ( perhaps it...
9日 前 | 0
To minimize the charging cost of electric vehicles
Which error do you obtain? I changed if j<=EVSE1_arr_time & j<=EVSE1_leave_time into if all(j<=EVSE1_arr_time) && all(j<=E...
9日 前 | 0
How to store value in the table using looping
hello, below you can find an example on how to store data in a table in a loop numLoop = 10; % indicate the number of loops.....
9日 前 | 0
| 採用済み
how to resize a matrix two pair of two numbers stacked together?
you can do this with the reshape command: a = (1:16)' b = reshape(a, 4, [] )
9日 前 | 0
Removal of empty cells in an array
this was due to the indexing, you were putting the temporary data into "nn{n1,n} = F1{n1}", thus at the second run of "n" a new ...
9日 前 | 0
| 採用済み
how to plot a plane using equations of planes?
does this result in what you need? Edit: update to plot a plane at each point and plot the normal using quiver XYZ = [ 126.604...
9日 前 | 0
| 採用済み
how to do the matrix value comparison of two different iterations ?
yes, you can do this like you say by saving the best result and updating it at each iteration i tried to update the pseudo code...
9日 前 | 0
| 採用済み
Index of matrix using colon
you need to save the index value into a new array, otherwise it will overwrite the value and only keep the last one mainmatrixX...
10日 前 | 0
I want put test 3 sigma on time series by 800*1 dimension. I have this code, it return nothing.
the error is because you intialize lat = fid(:,2); this means that 'lat' will be a vector with 1 column next you ask for l...
10日 前 | 0
How can I transfer the results of a four-cycle iteration into a matrix with a row for each iteration?
hello, if you want to use the for loop you need to index the rows A=[0.246 0.280 0.286 0.301 0.302 0.330 0.397 0.478 0.607 0.65...
10日 前 | 1
| 採用済み
Indexing a cell using a table
i gues you need to translate the logical matrix B into indexes, e.g. using find % create A A = {[1;2;3] [4;5;6] [7;8;9] ; [10;...
10日 前 | 0
| 採用済み
How can I control the amount of same random letters back to back? (N-back)
Quite an interesting problem, I'm not familiar with a n-back experiment. But I guess one of the issues could be that your 'integ...
10日 前 | 0
| 採用済み