Azzi Abdelmalek
University teacher Speciality: Automatic control Hobbies: Football, Music and Chess. Professional Interests: Automatic Control https://www.youtube.com/channel/UC3moae2VIQIKNfDw5bYAAUg/videos
Statistics
RANK
11
of 295,410
REPUTATION
20,998
CONTRIBUTIONS
6 Questions
7,144 Answers
ANSWER ACCEPTANCE
83.33%
VOTES RECEIVED
3,935
RANK
3,565 of 20,224
REPUTATION
422
AVERAGE RATING
3.30
CONTRIBUTIONS
4 Files
DOWNLOADS
9
ALL TIME DOWNLOADS
4126
RANK
of 153,822
CONTRIBUTIONS
0 Problems
0 Solutions
SCORE
0
NUMBER OF BADGES
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
how to set graph size
Set the ‘Position’ property on the current figure (gcf). Specify the position as a vector of the form “[x0 y0 width height]”, wh...
9 days ago | 44
| accepted
How to convert a 1x1 cell to a string?
To convert a cell array of character vectors to a character array, use the “char” function. A = {'line'} B = char(A) To extract ...
9 days ago | 66
| accepted
How can I delete legends from a plot or subplot?
Below are two ways to remove a legend from a plot:Use the "findobj" function to find the legend(s) and the "delete" function to ...
11 months ago | 2
| accepted
How can I convert table of chars to array of strings?
s={'1' '8' '2' '5' '1' '1' 'Z' 'F' '1' '3' 'C' '5' 'Y' 'U' '4' 'Q' '3' '4' '4' '0' '9' '1' '8' 'B' 'R' '1' '2' 'E' '8' '1' 'Z'...
5 years ago | 0
How can I convert table of chars to array of strings?
s={'1' '8' '2' '5' '1' '1' 'Z' 'F' '1' '3' 'C' '5' 'Y' 'U' '4' 'Q' '3' '4' '4' '0' '9' '1' '8' 'B' 'R' '1' '2' 'E' '8' '1' 'Z'...
5 years ago | 0
import 2 rows from 2 different sheets
You can use xlsread function to import your data from the two files, then concatenate your data
5 years ago | 0
eliminate the nullspace of a matrix
If you have any matrix, square or not, you have only one possibility: remove entire rows or columns that are equal to zero E...
7 years ago | 0
| accepted
How do I transfer timeseries data to excel?
use xlswrite function
7 years ago | 0
| accepted
Deleting a Cell and shifting cells left
a = {'1' '2' '3' '4' '5' '6' '7' '8' '9'} a(3)=[]
7 years ago | 4
| accepted
Copy a 3D input image to a cell array?
Im=imread('your_image') out{1}=Im
7 years ago | 0
| accepted
Power of abs. function
use <https://www.mathworks.com/help/simulink/slref/mathfunction.html Math function block> and set the pow function
7 years ago | 1
Add text column to data
A=[1 1 4 1 2 1 1 3 1] B=repmat({'coordinate'},size(A,1),1) out=[B num2cell(A)]
7 years ago | 1
How to find max value and reduce it from other arrays
A = [ 1 3 50 60 1 1 40 60 1 4 30 60 2 3 40 50 2 4 30 50 2 1 50 50 2 9 10 50 3 2 20 0 3 9 30 0 3 5 40 0 4 2 50 -20 ...
7 years ago | 0
| accepted
all possible combinations of three vectors
A=[1,5,6,9,12] B= [1,2,3,4,5,6] C= [3,18,27,69,72] [ii,jj,kk]=meshgrid(A,B,C); ii=permute(ii,[1 3 2]); jj=permute(jj,[2 1...
7 years ago | 2
How can I find elements in sequence in an array?
v=[2,3,6,8,9,10,12,14,16,17] id=[10 diff(v) 10]==1 ii1=strfind(id,[0 1]) ii2=strfind(id,[ 1 0])
7 years ago | 2
| accepted
If each element of vector with size (1,3) takes one value of 4 discrete values. How can I obtain all possible combinations of this vector?
If the order is not important v=[0 0.625 1.25 2.5] id=nchoosek(1:4,3) out=v(id)
7 years ago | 0
| accepted
How to find string structure elements?
people(1).Surname='Judit'; people(1).Family_Name='White'; people(2).Surname='Margaret'; people(2).Family_Name='Brown'; peo...
7 years ago | 0
| accepted
generate y(n)=y(n-1)+x(n)
n=10 y0=0; % Initial conditions y(1)=y0+x(1); for k=2:n y(k)=y(k-1)+x(k) end
7 years ago | 2
| accepted
find same elements between two sequences
a=[2 5 4 6 6 7 9 8 4 5 61 2 56 41] b=[1 9 7 3 2 4 5 1 6 4 78 1 12 56 14 27 46 1 3 2 4] c=intersect(a,b)
8 years ago | 0
how to convert cell to array
If v is your cell array out=cell2mat(v([1 3 4 5 7 ]))
8 years ago | 1
| accepted
Sum of nonzero vector elements
v= [1 2 3 0 0 0 4 5 0 6 7 0 8 9] ii=[0 v~=0 0] idx1=strfind(ii,[0 1]) idx2=strfind(ii,[1 0])-1 out=cell2mat(arrayfun(@(x,y...
8 years ago | 1
| accepted
Selecting unique pairs from a vector
imax = [1;2;3;4;5;6] out=nchoosek(imax,2)
8 years ago | 1
| accepted
How do I compare the elements of two vectors 1 by 1?
Use curly brackets uset1{i} == uset2{i} You can avoid for loop out=find(cellfun(@(x,y) x==y,uset1,uset2))
8 years ago | 1
Seperate numbers in string to different array
str={'take off time 0.102 sec';'sensor1 initiated .361 sec, -31 (mv)';'sync at 50 ms'} out=regexp(str,'\s[-\d\.]?\.?\d+','mat...
8 years ago | 0