Community Profile

photo

Morteza Darvish Morshedi


Last seen: 2 years ago Active since 2019

Statistics

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

View badges

Content Feed

View by

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

3 years ago | 3

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

4 years ago | 0

Answered
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{:}]

5 years ago | 5

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

5 years ago | 2