photo

Gani


Last seen: environ un an il y a Actif depuis 2019

Followers: 0   Following: 0

Statistiques

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

Afficher les badges

Feeds

Afficher par

Réponse apportée
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); ...

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
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 =...

plus de 5 ans il y a | 2

| A accepté

Réponse apportée
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...

plus de 5 ans il y a | 0

Réponse apportée
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...

plus de 5 ans il y a | 1

| A accepté

Réponse apportée
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,...

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
Please help me to position the starting and ending point of data
Use strfind Example: str = 'M0400FCFFFAF2F7D1046DFB3808A2039B02830741F8DB01A2F6EDF94DFECEF73A083DFE6D0826069EFE540659F5D5FC...

plus de 5 ans il y a | 0

| A accepté

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

plus de 5 ans il y a | 0

| A accepté