Community Profile

photo

Gani


Last seen: 10ヶ月 前 2019 年からアクティブ

Followers: 0   Following: 0

統計

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

バッジを表示

Feeds

表示方法

回答済み
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); ...

約5年 前 | 0

| 採用済み

回答済み
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 =...

約5年 前 | 2

| 採用済み

回答済み
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...

約5年 前 | 0

回答済み
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...

約5年 前 | 1

| 採用済み

回答済み
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,...

約5年 前 | 0

| 採用済み

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

約5年 前 | 0

| 採用済み

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

約5年 前 | 0

| 採用済み