photo

Gani


Last seen: ungefär ett år ago Active since 2019

Followers: 0   Following: 0

Statistics

All
  • Introduction to MATLAB Master
  • Community Group Solver
  • CUP Challenge Master
  • Promoter
  • Commenter
  • Solver
  • Knowledgeable Level 2
  • First Answer

View badges

Feeds

View by

Answered
How do use gplot as subplots in a for loop?
Put hold on inside the loop. figure for i = 1:25 [xdata,ydata,AdjMat] = makerandomnetwork(); subplot(5,5,i); ...

mer än 5 år ago | 0

| accepted

Answered
Cannot read in times from excel spreadsheet and datenum is off by at least 10 seconds?
Below code worked for me. after conversion values are as in excel. A = readtable('C:\Users\Desktop\Example.xlsx'); naTest =...

mer än 5 år ago | 2

| accepted

Answered
Plotting graphs over each other for N iterations
Check this. clear all clc S=100; sigma=0.3; T=1.2; r=0.05; step=500; dt=T/step; sqdt=sqrt(dt); rr=randn(1, st...

mer än 5 år ago | 0

Answered
To find Maximum value and minimum value for each group of four rows for a 1576*1024 matrix
Hello, Please try below soluition. naMax = []; naMin = []; for i = 1:4:size(H1,1) % H1 is your original matrix n...

mer än 5 år ago | 1

| accepted

Answered
replace a numerical with a string within a csv file.
Use xlsread and xlswrite Example: [~,~,raw ]= xlsread('C:\Test.csv'); raw{2,1} ='FUTAvgTradePrice'; % setting value raw(1,...

mer än 5 år ago | 0

| accepted

Answered
Please help me to position the starting and ending point of data
Use strfind Example: str = 'M0400FCFFFAF2F7D1046DFB3808A2039B02830741F8DB01A2F6EDF94DFECEF73A083DFE6D0826069EFE540659F5D5FC...

mer än 5 år ago | 0

| accepted

Answered
Please help me in positioning start and end of the data(Example is given below)
Use strfind to get the index. Example: str = 'M0400FCFFFAF2F7D1046DFB3808A2039B02830741F8DB01A2F6EDF94DFECEF73A083DFE6D08260...

mer än 5 år ago | 0

| accepted