photo

Morteza Darvish Morshedi


Last seen: circa 3 anni fa Attivo dal 2019

Followers: 0   Following: 0

Statistica

All
  • Promoter
  • Community Group Solver
  • Solver
  • First Answer

Visualizza badge

Feeds

Visto da

Risposto
Plotting a normalised histogram graph
In the recent versions of MATLAB: % D is your data % b can be number of bins, or edges histogram(D,b, 'Normalization','probab...

oltre 3 anni fa | 3

Risposto
Reading a csv file containing not only numerical data
I would recomment readtable with passing delimiter parameter in the csv file.

oltre 4 anni fa | 0

Risposto
How to convert a 1x1 cell to a string?
Even if you have more than 1 string in our cell array, an easy way can be: S = {'Hello',' ','world'} ss = [S{:}]

oltre 5 anni fa | 5

Risposto
Does something similar to 'intersect' command exists for more than 2 vectors?
Hi, For three input, you can simply do this: function [Com,ia,ib,ic] = intersect3(A,B,C) [C1,ia,ib] = intersect(A,B); [Com,i...

oltre 5 anni fa | 2