C# Ta Matris İşlemleri

C# ta Matris çarpması yaparken öncellikle matrisin ilk satrında ki tüm sutunları diğer matrisin il sutunundaki tüm satırlarla çarpıp topluyoruz böylece çarpım matrisinin ilk satrı olmuş oluyor diğer satırlarda aynen bu şekilde meydana geliyor.Aşağıda hem kaynak kodu var hemde linktende indirebilirsiniz programı.Ancak bu kodu anlayabilmeniz için matrisleri bilmeniz ve bir matris çarpımının ve toplamının nasıl olduğunu bilmeniz gerekiyor yinede sorularınızı beklerim!!!

Program Aşağıdaki linktedir.

http://rapidshare.com/files/402122415/Salih_Deveci-Matris.rar.html

şifre:salihdeveci

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace Matris
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}

bool Matris_Al(string str, int[,] dizi)
{
string[] s;
char[] bölücüler = { ‘ ‘, ‘\r’ };
s = str.Split(bölücüler);
if (s.GetUpperBound(0) < (Convert.ToInt32(txtSatir.Text) * Convert.ToInt32(txtSutun.Text) – 1))
{
MessageBox.Show(“Matris yanlış girilmiÅŸ”);
return false;
}
int k = 0;
for (int i = 0; i < Convert.ToInt32(txtSatir.Text); i++)
{
for (int j = 0; j < Convert.ToInt32(txtSutun.Text); j++)
{
dizi[i, j] = int.Parse(s[k]);
k++;
}
}
return true;
}

private void btnTopla_Click(object sender, EventArgs e)
{
int x = Convert.ToInt32(txtSatir.Text);
int y = Convert.ToInt32(txtSutun.Text);
int[,] a = new int[x, y];
int[,] b = new int[x, y];
int[,] c = new int[x, y];

Matris_Al(txtMatrisA.Text, a);
Matris_Al(txtMatrisB.Text, b);

label3.Text = “A + B matrisi : “;
txtSonuc.Text = ” “;
for (int i = 0; i < x; i++)
{
for (int j = 0; i < y; j++)
{
c[i, j] = a[i, j] + b[i, j];
txtSonuc.Text = txtSonuc.Text + ” ” + c[i, j].ToString();
}
txtSonuc.Text = txtSonuc.Text + “\r\n”;
}
}

private void btnCarp_Click(object sender, EventArgs e)
{
int x = Convert.ToInt32(txtSatir.Text);
int y = Convert.ToInt32(txtSutun.Text);
int[,] a = new int[x, y];
int[,] b = new int[x, y];
int[,] c = new int[x, y];
int s = 0; ;

Matris_Al(txtMatrisA.Text, a);
Matris_Al(txtMatrisB.Text, b);

for (int i = 0; i < x; i++)
{
for (int j = 0; j < y; j++)
{
s = 0;
for (int k = 0; k < x; k++)
{
s = s + a[i, k] * b[k, i];
}
c[i, j] = s;
}
}
for (int i = 0; i < x; i++)
{
for (int j = 0; j < y; j++)
{
txtSonuc.Text = txtSonuc.Text + ” ” + c[i, j].ToString();
}
txtSonuc.Text += “\r\n”;
}
}

private void Form1_Load(object sender, EventArgs e)
{
MessageBox.Show(“Matrisleri elemanlar arasında birer boÅŸluk olacak ÅŸekilde yazın\r\n” +
“Satırlar arasında enter’ e basınız…”);
}
}
}

 

Oracle Exadata SQL Server Goldengate Weblogic EBS ve Linux konusunda aşağıdaki konularda 7×24 Uzman Danışmanlara yada Eğitimlere mi
İhtiyacınız var [email protected] adresine mail atarak Bizimle iletişime geçebilirsiniz.

– Oracle Veritabanı Danışmanlığı
– Oracle Veritabanı Bakım ve Destek
– Exadata Danışmanlığı
– Exadata Bakım ve Destek
– SQL Server Veritabanı Danışmanlığı
– SQL Server Veritabanı Bakım ve Destek
– Goldengate Danışmanlığı
– Goldengate Bakım ve Destek
– Linux Danışmanlığı
– Linux Bakım ve Destek
– Oracle EBS Danışmanlığı
– Oracle EBS Bakım ve Destek
– Weblogic Danışmanlığı
– Weblogic Bakım ve Destek
– Oracle Veritabanı Eğitimleri
– Oracle VM Server Danışmanlığı
– Oracle VM Server Bakım ve Destek
– Oracle EPPM Danışmanlığı
– Oracle EPPM Bakım ve Destek
– Oracle Primavera Danışmanlığı
– Oracle Primavera Bakım ve Destek
– Oracle Eğitimleri
– SQL Server Eğitimleri
– Goldengate Eğitimleri
– Exadata Eğitimleri
– Linux Eğitimleri
– Oracle EBS Eğitimleri
– Oracle VM Server Eğitimleri
– Weblogic Eğitimleri
– Oracle EPPM Eğitimleri
– Oracle Primavera Eğitimleri

About Mehmet Salih Deveci

I am Founder of SysDBASoft IT and IT Tutorial and Certified Expert about Oracle & SQL Server database, Goldengate, Exadata Machine, Oracle Database Appliance administrator with 10+years experience.I have OCA, OCP, OCE RAC Expert Certificates I have worked 100+ Banking, Insurance, Finance, Telco and etc. clients as a Consultant, Insource or Outsource.I have done 200+ Operations in this clients such as Exadata Installation & PoC & Migration & Upgrade, Oracle & SQL Server Database Upgrade, Oracle RAC Installation, SQL Server AlwaysOn Installation, Database Migration, Disaster Recovery, Backup Restore, Performance Tuning, Periodic Healthchecks.I have done 2000+ Table replication with Goldengate or SQL Server Replication tool for DWH Databases in many clients.If you need Oracle DBA, SQL Server DBA, APPS DBA,  Exadata, Goldengate, EBS Consultancy and Training you can send my email adress [email protected].-                                                                                                                                                                                                                                                 -Oracle DBA, SQL Server DBA, APPS DBA,  Exadata, Goldengate, EBS ve linux Danışmanlık ve Eğitim için  [email protected] a mail atabilirsiniz.

10 comments

  1. siteniz çok güzel olmuş..hayırlı olsun

  2. Teşekkür Ederim hocam darısı sizin gibi güzide yazılım uzmanlarınında başına!!!

  3. kaynak kodu bu adrese gonderebilirmisinizz

  4. İndirme linki bozuk bide programı kendim yazdım ama hata veriyor hep

  5. hocam linki bozulmuş yenilermisinz

  6. hocam linki bozulmuş yenilermisinz

  7. Merhabalar hocam;
    Programı indirme linki çalışmıyor. Eğer elininzde mevcutsa tekrardan yükleyebilirmisiniz?

  8. BU PROGRAMI İNDİREMİYORUM KALDIRILMIŞ BANA YARDIMCI OLABİLİR MİSİNİZ.. ÖDEVİM İÇİN GEREKLİ OLDUGU İÇİN İSTİYORUM

  9. mehmet kocakoç

    merhaba sitedeki kodda bi hata var rapiddede silinmiş dosya kodlari yada rar halinde alabilecegim bi yer varmi

  10. ya bısey soracam bana yardım edermısınız

Leave a Reply

Your email address will not be published. Required fields are marked *