Recent content by hodei_cloud

  1. H

    Receiving/transmitting with a Yagi antenna?

    Hi, I am learning about different antennas like for radio and internet wifi bandwiths and I came to the Yagi antenna. From what I understand, the people use this antenna both for receiving and emitting signal. For example, for pentesting (handshakes and all that) and for radio emitting (also...
  2. H

    Fortran The exact reading of a text (fortran 90)

    Finally! The only change I made is in the part that make the error, I made some changes to make the paragraphs characters (like you said) and the problem I mention about the bad reading. Like this: do i=1,n read(unit=111,fmt="(a10000)"),line1 if (len_trim(line1)/=0) then...
  3. H

    Fortran The exact reading of a text (fortran 90)

    I think its done, if that's the problem of all the program I will let you know
  4. H

    Fortran The exact reading of a text (fortran 90)

    dont know why, but it reads the first number x m (m times) where m=columns
  5. H

    Fortran The exact reading of a text (fortran 90)

    Anyways, thanks for all your help. I was compiling the program in a docfis server, and in this server the program runs always good, but sometimes not in my private computer. So maybe that is way you couldn't run it in the first attempt. I will try to see if I can do more, and I am also...
  6. H

    Fortran The exact reading of a text (fortran 90)

    Regarding your answer, the second loop ignores the blank lines? its not the same as the first? I don't see the difference...
  7. H

    Fortran The exact reading of a text (fortran 90)

    Sorry about that, I was trying to explain a little bit (because my program isn't in english) and I make a few mistakes. I attach the real program (I added some explanations with the ! simbol). But maybe its too long to read. Thanks for the help In the meantime, I will see if I can do something...
  8. H

    Fortran The exact reading of a text (fortran 90)

    Hello, sorry for asking again, but I have a problem with the tip gsal gave me. I make a program that takes a text and makes an output of numbers (exactly with the length of the characters) like that !to read the number of lines in the text...
  9. H

    Fortran The exact reading of a text (fortran 90)

    No, no, your program works really fine! But I mean that in my program I use an old text and make a difficult operation with each character to form another text. With the program you write the output is in the screen, making it imposible for me. And I try to modify to make the output in a text...
  10. H

    Fortran The exact reading of a text (fortran 90)

    Thank you, both of you. Your answers are very helpful ! The problem with the solution of gsal is that when writing the matrix, all the matrix columns have the same lines, and also the backspace character. This makes my program very slow (makes the cryptography operation with each character)...
  11. H

    Fortran The exact reading of a text (fortran 90)

    Hello everyone, I am making an RSA algorithm (cryptography) with my little knowledge and I am having serious problems with the reading of the text. I am making it with a simple text reading (no raw format) and the main problem is the length of each line. For example in this text...
  12. H

    Fortran Fortran: How to make a long character made with an array

    Thanks, the array of a character was driving me crazy... haha
  13. H

    Fortran Fortran: How to make a long character made with an array

    Thank you! And if I want to do the same thing but with "x" being a matrix and "a" a array? I try some programms, but no luck
  14. H

    Fortran Fortran: How to make a long character made with an array

    Lets see if I explain myself. I want to FILL a string with the components of a character array. I have no idea, but seeing this example: character(len=*),parameter::fname=" Paul",lname="Scholes" character(len=20)::fullname fullname=fname//" "//lname I try this one...
Back
Top