Azzi Abdelmalek - MATLAB Central (2024)

Azzi Abdelmalek - MATLAB Central (1)


Last seen: alrededor de 3 años hace

|&nbsp Con actividad desde 2012

Followers: 1

Azzi Abdelmalek - MATLAB Central (2) Umar

Followers: 1 Following: 0

Mensaje

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

  • Panel de control
  • Insignias
  • Aprobaciones

Estadística

All

MATLAB Answers

6 Preguntas
7.144 Respuestas

File Exchange

4 Archivos

CLASIFICACIÓN
11
of 293.744

REPUTACIÓN
20.974

CONTRIBUCIONES
6 Preguntas
7.144 Respuestas

ACEPTACIÓN DE RESPUESTAS
83.33%

VOTOS RECIBIDOS
3.923

CLASIFICACIÓN
3.557of 20.058

REPUTACIÓN
421

EVALUACIÓN MEDIA
3.30

CONTRIBUCIONES
4 Archivos

DESCARGAS
10

ALL TIME DESCARGAS
4112

CLASIFICACIÓN

of 149.708

CONTRIBUCIONES
0 Problemas
0 Soluciones

PUNTUACIÓN
0

NÚMERO DE INSIGNIAS
0

CONTRIBUCIONES
0 Publicaciones

CONTRIBUCIONES
0 Público Canales

EVALUACIÓN MEDIA

CONTRIBUCIONES
0 Temas destacados

MEDIA DE ME GUSTA

Ver insignias

Feeds

  • All (7.154)
  • MATLAB Answers (7.150)
  • File Exchange (4)

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

8 meses hace | 1

| aceptada

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

alrededor de 5 años hace | 0

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

alrededor de 5 años hace | 0

Respondida
import 2 rows from 2 different sheets
You can use xlsread function to import your data from the two files, then concatenate your data

más de 5 años hace | 0

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

casi 7 años hace | 2

| aceptada

Respondida
Import an Excel File
Use xlsread function

casi 7 años hace | 0

Respondida
Solve a system of 6 equation
use solve function

alrededor de 7 años hace | 1

Respondida
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 zeroE...

alrededor de 7 años hace | 0

| aceptada

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

alrededor de 7 años hace | 0

| aceptada

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

alrededor de 7 años hace | 4

| aceptada

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

alrededor de 7 años hace | 0

| aceptada

Respondida
Power of abs. function
use <https://www.mathworks.com/help/simulink/slref/mathfunction.html Math function block> and set the pow function

más de 7 años hace | 1

Respondida
Add text column to data
A=[1 1 41 2 11 3 1]B=repmat({'coordinate'},size(A,1),1)out=[B num2cell(A)]

más de 7 años hace | 1

Respondida
How to find max value and reduce it from other arrays
A = [1350601140601430602340502430502150502910503220039300354004250-20...

más de 7 años hace | 0

| aceptada

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

más de 7 años hace | 2

Respondida
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]==1ii1=strfind(id,[0 1])ii2=strfind(id,[ 1 0])

más de 7 años hace | 2

| aceptada

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

más de 7 años hace | 0

| aceptada

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

más de 7 años hace | 0

| aceptada

Respondida
location of element in matrix
Use ismember function

más de 7 años hace | 0

Respondida
generate y(n)=y(n-1)+x(n)
n=10y0=0; % Initial conditions y(1)=y0+x(1); for k=2:n y(k)=y(k-1)+x(k)end

más de 7 años hace | 2

| aceptada

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

más de 7 años hace | 0

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

casi 8 años hace | 1

| aceptada

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

casi 8 años hace | 3

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

casi 8 años hace | 0

| aceptada

Respondida
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])-1out=cell2mat(arrayfun(@(x,y...

casi 8 años hace | 1

| aceptada

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

casi 8 años hace | 1

| aceptada

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

casi 8 años hace | 1

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

casi 8 años hace | 0

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

alrededor de 8 años hace | 3

| aceptada

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

alrededor de 8 años hace | 0

| aceptada

Cargar más

Azzi Abdelmalek - MATLAB Central (27)

Seleccione un país/idioma

Seleccione un país/idioma para obtener contenido traducido, si está disponible, y ver eventos y ofertas de productos y servicios locales. Según su ubicación geográfica, recomendamos que seleccione: .

También puede seleccionar uno de estos países/idiomas:

América

  • América Latina (Español)
  • Canada (English)
  • United States (English)

Europa

  • Belgium (English)
  • Denmark (English)
  • Deutschland (Deutsch)
  • España (Español)
  • Finland (English)
  • France (Français)
  • Ireland (English)
  • Italia (Italiano)
  • Luxembourg (English)
  • Netherlands (English)
  • Norway (English)
  • Österreich (Deutsch)
  • Portugal (English)
  • Sweden (English)
  • Switzerland
    • Deutsch
    • English
    • Français
  • United Kingdom(English)

Asia-Pacífico

  • Australia (English)
  • India (English)
  • New Zealand (English)
  • 中国
  • 日本Japanese (日本語)
  • 한국Korean (한국어)

Comuníquese con su oficina local

Azzi Abdelmalek - MATLAB Central (2024)
Top Articles
Latest Posts
Recommended Articles
Article information

Author: Stevie Stamm

Last Updated:

Views: 5625

Rating: 5 / 5 (80 voted)

Reviews: 87% of readers found this page helpful

Author information

Name: Stevie Stamm

Birthday: 1996-06-22

Address: Apt. 419 4200 Sipes Estate, East Delmerview, WY 05617

Phone: +342332224300

Job: Future Advertising Analyst

Hobby: Leather crafting, Puzzles, Leather crafting, scrapbook, Urban exploration, Cabaret, Skateboarding

Introduction: My name is Stevie Stamm, I am a colorful, sparkling, splendid, vast, open, hilarious, tender person who loves writing and wants to share my knowledge and understanding with you.