photo

Morteza Hajitabar Firuzjaei


Last seen: fast 3 Jahre vor Aktiv seit 2018

Followers: 0   Following: 0

Nachricht

Senior Computer Programmer morteza.mhf@gmail.com

Statistik

All
MATLAB Answers

2 Fragen
12 Antworten

File Exchange

4 Dateien

RANG
13.065
of 300.381

REPUTATION
4

BEITRÄGE
2 Fragen
12 Antworten

ANTWORTZUSTIMMUNG
50.0%

ERHALTENE STIMMEN
0

RANG
12.788 of 20.941

REPUTATION
28

DURCHSCHNITTLICHE BEWERTUNG
2.00

BEITRÄGE
4 Dateien

DOWNLOADS
4

ALL TIME DOWNLOADS
280

RANG

of 168.477

BEITRÄGE
0 Probleme
0 Lösungen

PUNKTESTAND
0

ANZAHL DER ABZEICHEN
0

BEITRÄGE
0 Beiträge

BEITRÄGE
0 Öffentlich Kanäle

DURCHSCHNITTLICHE BEWERTUNG

BEITRÄGE
0 Highlights

DURCHSCHNITTLICHE ANZAHL DER LIKES

  • Personal Best Downloads Level 1
  • GitHub Submissions Level 3
  • First Submission
  • First Answer
  • Revival Level 1
  • Thankful Level 1

Abzeichen anzeigen

Feeds

Anzeigen nach

Gesendet


MortezaHajitabarFiruzjaei/ImageEnhancementMHF
Image Enhancement using Variance, PSO, and gain fitness

mehr als 7 Jahre vor | 1 Download |

0.0 / 5

Gesendet


MortezaHajitabarFiruzjaei/ImageVariance
Image Variance Calculation

mehr als 7 Jahre vor | 1 Download |

2.0 / 5

Gesendet


MortezaHajitabarFiruzjaei/WindSpeedPredictionMHF
Wind Speed Prediction

mehr als 7 Jahre vor | 1 Download |

0.0 / 5

Gesendet


MortezaHajitabarFiruzjaei/PixonImageVarianceMHF
Image Variance And Pixon Creation

mehr als 7 Jahre vor | 1 Download |

0.0 / 5

Beantwortet
Different desktops under windows 10
WIN + CTRL + LEFT/RIGHT: Switch to previous or next desktop. WIN + CTRL + D: Create a new desktop. WIN + CTRL + F4: Close the ...

mehr als 7 Jahre vor | 0

Beantwortet
Running a FAST model of wind turbine, MATLAB stops working!
do you use original matlab serial number? are your matlab files correct?

mehr als 7 Jahre vor | 0

Beantwortet
How to plot for a different initial values at same time
you can name both plot as figure(1) Morteza Hajitabar Firuzjaei

fast 8 Jahre vor | 0

Beantwortet
which way is better to calculate var of image with blockproc?
This code calculates the variance of a RGB image but it's not standard variance, see below: %------------------------------...

fast 8 Jahre vor | 0

Beantwortet
How to find the variance of an image?
This code calculates the variance of a RGB image but it's not standard variance, see below: %--------------------------------...

fast 8 Jahre vor | 0

Beantwortet
Does Matlab Mobile work with the App Designer? (.mlapp)
yes it works

fast 8 Jahre vor | 0

Beantwortet
how to plot a continuous graph in a loop
you can make your vectors and plot your graph, like: s = [1 1 1 1]; t = [2 4 5 3]; G = graph(s,t); plot(G); Mortr...

fast 8 Jahre vor | 0

Beantwortet
How to create a matrix[15*1], in which i need to change the value of particular element during simulation.
see these files Morteza Hajitabar Firuzjaei

fast 8 Jahre vor | 0

Beantwortet
Uitable get value from edit text
see below: function logNames % Create UI figure and components fig = uifigure('Position',[100 100 410 400]); loglist...

fast 8 Jahre vor | 0

Beantwortet
Why my function do not work and gives me an error message?
Dear friend, you used indices, you should make sure you are using integers as indices or make sure you are using vectors ...

fast 8 Jahre vor | 0

Beantwortet
import edit and write .txt file
%write x = 0:.1:1; A = [x; exp(x)]; fileID = fopen('exp.txt','w'); fprintf(fileID,'%6s %12s\n','x','exp(x)'); fprintf...

fast 8 Jahre vor | 0

Beantwortet
How can I import data from Excel for control MIMO system with narxnet function? I have 5 inputs and 1 output, each with 150 training data.
Dear Lejla, for simplefy your work, convert your excel to .mat matlab file abd then import your multiple input multiple outpu...

fast 8 Jahre vor | 0

Frage


Finally i wrote this code for wind speed prediction with 3 parameters, why does my code has different prediction for the same dataset on each run?
load('input.mat'); X = tonndata(inputData(:,(1:3)),false,false); T = tonndata(inputData(:,4),false,false); N ...

fast 8 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


how can i predict one week later(multistep prediction), this code just predicts one step in the future please make my code right(it's about wind speed prediction with 3 input parameter(pressure, humidity, temperature) and one target(wind speed)
load('input.mat'); Input_Parameter = tonndata(inputData(:,(1:3)),false,false); Target_Parameter = tonndata(inputData(:,1),fa...

fast 8 Jahre vor | 1 Antwort | 0

1

Antwort