Community Profile

photo

Azzi Abdelmalek


Last seen: 2 years ago Active since 2012

University teacher Speciality: Automatic control Hobbies: Football, Music and Chess. Professional Interests: Automatic Control https://www.youtube.com/channel/UC3moae2VIQIKNfDw5bYAAUg/videos

Statistics

All
  • Personal Best Downloads Level 2
  • 5-Star Galaxy Level 1
  • First Review
  • First Submission
  • 36 Month Streak
  • Thankful Level 4
  • Master
  • Revival Level 1
  • Knowledgeable Level 5
  • First Answer

View badges

Content Feed

View by

Answered
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 ...

3 months ago | 1

| accepted

Answered
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'...

4 years ago | 0

Answered
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'...

4 years ago | 0

Answered
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

Answered
Sort a matrix with another matrix
[~,id]=sort(B) C=A(id,:)

6 years ago | 2

| accepted

Answered
Import an Excel File
Use xlsread function

6 years ago | 0

Answered
Solve a system of 6 equation
use solve function

6 years ago | 1

Answered
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...

6 years ago | 0

| accepted

Answered
How do I transfer timeseries data to excel?
use xlswrite function

6 years ago | 0

| accepted

Answered
Deleting a Cell and shifting cells left
a = {'1' '2' '3' '4' '5' '6' '7' '8' '9'} a(3)=[]

6 years ago | 4

| accepted

Answered
Copy a 3D input image to a cell array?
Im=imread('your_image') out{1}=Im

7 years ago | 0

| accepted

Answered
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

Answered
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

Answered
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

Answered
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

Answered
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

Answered
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

Answered
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

Answered
location of element in matrix
Use ismember function

7 years ago | 0

Answered
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

Answered
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)

7 years ago | 0

Answered
how to convert cell to array
If v is your cell array out=cell2mat(v([1 3 4 5 7 ]))

7 years ago | 1

| accepted

Answered
how can i know the size of the file
s=dir('yourfile') the_size=s.bytes

7 years ago | 3

Answered
multipying character in array number
repmat({'a'} ,1,5)

7 years ago | 0

| accepted

Answered
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...

7 years ago | 1

| accepted

Answered
Selecting unique pairs from a vector
imax = [1;2;3;4;5;6] out=nchoosek(imax,2)

7 years ago | 1

| accepted

Answered
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))

7 years ago | 1

Answered
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...

7 years ago | 0

Answered
how to find the closest values with tolerance in a matrix given a specific value
A=1000*rand(601,2201) ; % Example tol=0.02 th=185.2 [ii,jj]=find(abs(A-th)<tol) size(ii)

7 years ago | 3

| accepted

Answered
Delete line of file based on number in first column
fid=fopen('file.txt'); l1=strtrim(fgetl(fid)); out={}; while ischar(l1) l2=strtrim(l1); if l2(1)~='8' ou...

7 years ago | 0

| accepted

Load more