Community Profile

photo

Sameer Pujari


Last seen: etwa 2 Jahre vor Aktiv seit 2021

Followers: 0   Following: 0

Statistiken

  • Thankful Level 1
  • Knowledgeable Level 2
  • First Answer

Abzeichen anzeigen

Feeds

Anzeigen nach

Frage


How to concatenate strings
Return answer = 'MIF' on passing the function FirstLetterOfWords('Matlab Is Fun') = 'MIF'

fast 3 Jahre vor | 1 Antwort | 0

1

Antwort

Beantwortet
How to make a table with date times and durations?
Table can be found simply using this T=table(rampD_start,rampD_end,rampD_dur)

fast 3 Jahre vor | 0

Beantwortet
Make Sequence Function go Diagonal
Just do this small change n = input ('sequence_matrix_'); fibb=[1,3:n]; for i=3:n fibb(i)=fibb(i-1)*3+(i)-2; end d...

fast 3 Jahre vor | 1

| akzeptiert

Beantwortet
In Simulink how would you change [4x1] signal to [1x1]
You can do this

fast 3 Jahre vor | 0

Beantwortet
How to plot graph using cell array or store the data into array to prepare it for plotting?
To store cell data in array following command can be used zeta_array =cell2mat(zeta)

fast 3 Jahre vor | 0

Beantwortet
Script editor is not returning to the next line intelligently after pressing enter!
You might have disabled smart indenting checkbox. Try this

fast 3 Jahre vor | 0

Beantwortet
Matlab grader problem error
try this fileID = fopen('AwesomeFile.txt','w'); fprintf(fileID,'Matlab is awesome!'); fclose(fileID);

fast 3 Jahre vor | 1

Beantwortet
How to edit fft analyzer window in 2021a version
The reason for this might be that, in the Model Configuration Parameters in "Data Import/Export" Section, the option "Single sim...

fast 3 Jahre vor | 0

Beantwortet
How to display map rectangle view?
You can try building on this axesm('MapProjection','mercator','Flatlimit',[30 72],'Flonlimit',[-25 45]);

fast 3 Jahre vor | 0

Beantwortet
How to edit "Function createComponents"?
I think you are talking about function createComponents(app) in MATLAB app designer. Unfortunately, greyed out portion in MATLA...

fast 3 Jahre vor | 0

| akzeptiert

Beantwortet
lsim function undersample error
Lower sample rate normally issues a warning not error. t = linspace(0,300) Above command generates 100 sample points between 0...

fast 3 Jahre vor | 0