Fedora :: "out Of Memory" Message When Plot Certain Data

Aug 5, 2011

The current Octave 3.4.0 on Fedora 15 is giving me an "out of memory" message when I plot certain data. See example below. It depends on the range, and the particular function. Anyone else get this behaviour?

[code]...

View 3 Replies


ADVERTISEMENT

General :: Plot Stem-and-leaf Plot Using Perl?

Nov 11, 2010

I'm curious if anyone know how to plot stem-and-leaf plot using perl? Basically, what I was wanting to do is read a bunch of numbers from a text file into an array, sort from smallest to biggest, and plot the following (last digit serves as the "leaf", so for example, for the following graph, going down from top to bottom is 7, 7, 12, 13, 18, 18, 23, 25, 27, 27, 27, 27, 27, 27, 28, 28, 29, 59, 30, 31, 31 etc.):

[Code]....

View 1 Replies View Related

Fedora :: Gnuplot Freezes After First Plot / Sort It?

Jul 8, 2011

I'm using 64-bit fedora 14 on my desktop. i was using gnuplot, but there was some power failure and my computer got shut down. now whenever i plot anything it freezes after first plot i have to force quit it

View 7 Replies View Related

Hardware :: Why Getting (Run Out Of Memory) Message

May 20, 2010

I am running a linux machine on a PC which has 2 GB of RAM Installed. I run out of memory most of the time so I try to understand where memory goes.

Code:
caracus:/home/apa # free -m
total used free shared buffers cached
Mem: 1914 1839 74 0 8 319
-/+ buffers/cache: 1511 402
Swap: 2062 1955 107

Code:
top - 15:28:52 up 3 days, 7:22, 9 users, load average: 4.73, 5.60, 6.36
Tasks: 230 total, 4 running, 225 sleeping, 0 stopped, 1 zombie
Cpu(s): 26.5%us, 69.4%sy, 0.0%ni, 4.1%id, 0.0%wa, 0.0%hi, 0.0%si, 0.0%st
Mem: 1959936k total, 1885700k used, 74236k free, 9392k buffers
Swap: 2112508k total, 1999344k used, 113164k free, 338672k cached

PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
1428 root 20 0 1684m 467m 2872 S 2 24.4 73:19.45 Xorg
18537 apa 20 0 883m 281m 35m S 8 14.7 45:02.24 firefox
3233 apa 20 0 876m 62m 13m S 0 3.3 4:08.47 thunderbird-bin
32635 apa 20 0 207m 57m 15m S 7 3.0 0:18.99 npviewer.bin
19068 apa 20 0 926m 55m 3508 S 0 2.9 0:23.85 MATLAB
32713 apa 20 0 782m 54m 13m S 0 2.9 0:04.60 java
3398 apa 20 0 671m 51m 4532 S 0 2.7 0:53.15 konqueror
3052 apa 20 0 604m 35m 10m S 0 1.8 3:10.46 plasma-desktop

Trying to understand the stats above? Perhaps then I could be able to blame something that consumes my memory.

View 10 Replies View Related

CentOS 5 :: Memory For Crash Kernel 0x0 To 0x0 Error Message

Jul 30, 2009

After CentOS5.3 install to /sdb7 partition (on 2nd HD) and using Ubuntu Grub(on 1st HD mbr) to boot CentOS, I get "memory for crash kernel 0x0 to 0x0 not within permissible range" as soon as CentOS starts. I have 2G of ram. The message is on every boot. I've had several other linuxes on that partition without such an error message. Otherwise the OS starts fine. Is the message of concern/import?

View 3 Replies View Related

General :: Sort All Data In Memory?

Jun 11, 2011

For Linux command sort, how do I force sort to load all input into memory and sort assuming I have enough memory? Or is it best to use a RAMDISK to store the input before feeding it to sort?

View 3 Replies View Related

Slackware :: Save Skype And Instant Message Logs To A Usb Memory Stick?

Apr 30, 2011

2 sets of skype logs on work PC (Windows) - and I forgot to take a copy when I finished the assignment - and on my own Slackware PC. Would be very useful to be able to have only one set (and same for instant message logs) on my usb memory stick. Is this possible?

View 1 Replies View Related

Ubuntu :: Reading Data From Disk Into Memory

Jun 6, 2011

I have a simple C program that reads a 1 GB file from disk into memory.The first time I run this program, the process takes several seconds. But if I run this program again immediately after it finishes, the read happens almost instantly. What is going on here?My suspicion is that the operating system is realizing that the data I'm trying to read is still uncorrupted in memory (its been freed but not overwritten), so instead of reading it again, it just gives me the same block. I would really like to know what this process is called, or any Googleable keywords that would allow me to research it.

The reason I ask is because the size of my input data has increased. Now I need to read in a 6 GB file (my system has 12 GB of RAM), but I'm not observing the same behavior with the larger file. Each time I run the program the read takes an equally long time.

View 2 Replies View Related

General :: Program To View Data In Memory RAM?

Aug 5, 2011

I'm running a java program and to debug the program instead of using a debugger I would like to look to the heap and to the bytes in the memory of the process. I was hoping that the pointers would give me a snapshot of a moment of the application. It exists a program that allow us to look to the details of a process and to the memory ram?

View 2 Replies View Related

Software :: Writing Data Into A Memory Location?

Feb 1, 2010

I am using ARM9(S3C2440) board in which linux kernel 2.6.30.4 is ported and i need to write some 8-bit data(say 0xAA) into the memory location 0x08000000 and i need to trace the data written into the location is correct or not how to do this in linux.

View 3 Replies View Related

Programming :: Data Structure To Manage Memory?

Oct 1, 2010

I have a mxn matric (which is my simplified way of saying it is RAM with bytes on it) Some of the locations on this metric is filled with some data and some places are empty. The mxn are very big numbers in size. I am trying to make a program so that if a system call wants to write some thing on empty locations on this mxn metric it should be able to do so without any problem. The thing which I want to understand or logic of a data structure is what data structure do you people feel should I be maintaining so that I can allocate the requested space immediately from the above mxn matric when some system call requests for some (k) number of locations from above metrics.

The logic initially I thought was to maintain a hashtable

1bytes requested----------> location 1,location 2,location 3.........location n
2bytes requested----------> location 1,location 2,location 3.........location n
3bytes requested----------> location 1,location 2,location 3.........location n

[code]....

but the problem with above logic is size of the pointers where I will be writing this problem is unsigned 64 byte.So to know location of one free byte if I am maintaining one pointer of type u64 this is not a feasible solution.

View 6 Replies View Related

Software :: Memory Card Data Recovery Program?

May 18, 2009

A friend of mine asked me to try and recover some photos she deleted by accident on her SD memory card. Normally, I would flip over to my Windows box and do this, but I'm wondering if there is a Linux equivalent to a Windows data recovery program. I'm running Fedora 10.

View 2 Replies View Related

Ubuntu :: Unmounting USB-drive (flash Memory) - Get Data Back?

Jan 6, 2010

I stupidly unplugget my USB-cable, which was connected to my Nokia music phone, just as if I were in Windows. What do I do? I've lost my music on the phone, or, it seems it may be there (the correct mass of data), but my phone now tells me there is no music... Can I recover this? And - what is the correct way to unplug a USB unit in Ubuntu? To make it work, and find the phone/drive - I just typed "sudo lsusb" in the terminal, and it found and opened the memory automatically... How should you unmount the USB, and maybe even how do I get my data back?

View 7 Replies View Related

Fedora Hardware :: Checking Computer Memory - Specification Shows 2 GB Of Memory Instead Of GB

Feb 7, 2011

Fedora 14 xfce
HP Mini 210

I am looking to buy some memory for my netbook. Currently I have 1 GB of DDR3 memory. However, the specification says that 2 GB of memory is the max. However, when I do the following it says that 4GB is the max:

[Code].....

View 3 Replies View Related

Ubuntu :: Booting Stops With Message Saying K8 NPT DATA CHANGE.......

Nov 27, 2010

I currently use mint gnome 9 as my OS but I have am having a problem with the boot up on my computer. It starts booting but then stops with a message saying K8 NPT DATA CHANGE UPDATE NEW DATA to DMI UPDATE SUCCESS and stops there and doesn't go any further. its a BIOS or a CMOS. what this message means and how to fix it?

View 1 Replies View Related

Software :: Notepad Equivalent - Transfer The Data To Windows Desktop Regularly Via Memory Stick

Sep 27, 2010

I have just started to learn Java programming and need to be able to use a compatible notepad equivalent in Ubuntu i will need to save the data as is,in Ubuntu and be able to transfer the data from my Linux machine to the windows desktop regularly via memory stick i absolutely love Linux and don't want to have to go back to windows to do this.

View 5 Replies View Related

Fedora Security :: Send An Email Using Evolution The Message Was Not Sent But Returns A Error Message?

Apr 30, 2009

Hi I am running a fedora 10 desktop. when i send an email using evolution the message was not sent but returns a error message:"Error while performing operation.DATA command failedError: 550 Viagra SPAM - Hi in Subject" and the message did not have an attachment just plain words. what might have gone wrong for i have been using this for sometime without a problem. or what security measures should be in place to remove this viagra spamAm I infected by virus on this fedora, all my updates are up to date.

View 1 Replies View Related

CentOS 5 Hardware :: Logical Drives Disable Due To Data Loss Error Message

May 25, 2010

We have made a fresh installation on DL 580 G 5 Server. The installation Completes successfully. When we reboot the server we find an error message " Logical Drive Disable due to Possible Data Loss. and then non system disk or disk error.

Due to this we have lost all of the data. We can successfully install Windows Server 2008 or 2003 or Redhat Enterprise Linux 5 on this server with no error no issue.we can successfully install Windows Server 2008, 2003 or RedHat Enterprise on RAID 5 or RAID 6 Or RAID 1 or RAID 1+0. we dont face any issue on these windows or linux platforms.We are only facing RAID Controller Issue on CentOS 5

View 2 Replies View Related

Debian Programming :: How To Plot With C++ Like JQplot

Jun 28, 2014

I need some C++ graphical lib to work with gtk+.

What I want is to plot like jQplot: [URL] .....

View 1 Replies View Related

Ubuntu :: Message "corrupted Low Memory Ffff880000006598"

Mar 25, 2011

I installed ubuntu 10.10 on my hp dv7 windows seven labtop. I installed ubuntu from within windows. It worked for a couple of months and then it came up with the message- corrupted low memory ffff880000006598. I have 4g of memory on my labtop and over 350gb of space free so this doesnt make sense.

View 2 Replies View Related

OpenSUSE Hardware :: Scilab Crashes On Plot

May 17, 2010

I have openSUSE 11.1, DELL vostro 1500 with NVIDIA card (Which type?). I am runnnig SCilab 5.1.1 which crashes on plot. The same scilab runs on the same computer through Windows Vista (I have dual boot). I suppose this is a linux problem.

View 1 Replies View Related

General :: Use Xplot In Order To Plot A Spectrum?

Mar 6, 2011

I want to use xplot in order to plot a spectrum but when I executed the code by typing "xplot qso.fits" in terminal it returned the following error one after the other so I was force to stop the program using "Ctrl + C". (I am using Ubuntu 10.4 and I have also PGPLOT installed on my Linux).

[Code]...

View 1 Replies View Related

General :: Plot Band Structure Using Wien2k?

Sep 28, 2010

I want to plot band structure using Wien2k and for this I have to make a file named "case.klist_band". But I have a Rhomhedral compound . There is written to make the file using xcrysden but I donot know how to make the file from xcrysden.

View 2 Replies View Related

Software :: Plot Trace File Into A Graph?

Mar 22, 2011

how do i plot the trace file into a graph? can any 1 show an example here? just any trace file will do

View 13 Replies View Related

Programming :: Plot Individual Pixels In A Window?

Apr 6, 2010

It's been a while since I did any kind of graphics programming, but I would like to start learning how to do graphics stuff in *nix. I started reading the GTK+ 2.0 Tutorial, but a) I've only been able to write a small "Hello World" program, and that tested my patience, and b) I'm not seeing anything which allows you to plot a pixel directly. Back before I migrated to Linux, I used the Windows GDI SetPixel() function for plotting pixels sequentially (this was for a small fractal generator). Mostly what I'm asking is if there's any kind of equivalent function in *nix graphics APIs? GTK+? Would I have to deal with SDL/OpenGL?

View 3 Replies View Related

General :: Plot X Graph Ubuntu By Using Awk Scripts Indicating?

Mar 20, 2011

how can i plot x graph Ubuntu by using awk scripts indicating how can i change awk files into xgr files,

View 13 Replies View Related

Software :: How To Plot Fewer Error Bars In Xmgrace

Oct 28, 2010

How do I plot error bars for say, every 100th point, instead of for every single point? At the moment my plot looks like a thick band instead of a thin curve, since every point has an error bar attached to it.

View 2 Replies View Related

Software :: Gnuplot - Plot Individual Plots In Separate Windows?

Apr 1, 2010

I am new to gnuplot linux based plotting tool. I am trying to plot data from multiple data files and I want each plot to be open in a separate window. This is not happening in gnuplot script I have written, it holds the current window and plots the next data on the same window.A way I found to see separate plots was to use multiplot, but this plots multiple plots in the same window. Can someone tell me how to plot multiple plots in separate window in gnuplot? I could not find the answer in documentation/man pages.

[Code]...

View 1 Replies View Related

Server :: Memory Peak Caused Server Crash - Data Interpretation?

Dec 16, 2010

Last week my server crashed. I'm trying to diagnose the cause.

This is the relevant error message in /var/log/messages:

Code:

I'm assuming that I can conclude, then, that apache/httpd was the cause of the memory leak?

Next, I've been tracking my memory usage. Using top, this is an average memory load level for my server:

Code:

I'd like to confirm if my understanding of this data is correct, because Plesk indicates that my memory usage is only 50% or less. (Though I have read a number of reports indicating that Plesk's measurements are frequently wrong.)

Top says: Of the 2,073,156K total memory, 1,982,572K (95.63%) is being used, 90,584K (4.37%) is free. Of that sum, 421,948K (20.35%) are being used as buffers. Additionally, of the 2,096,472K of Swap, 60K is used, and 887,700K (42.34%) is cached.

My questions: Is my memory actually being 95% used? Or is the buffered quantity (20.35%) not a use of physical/virtual memory? (i.e. is it disk usage?) Does the amount of cached Swap influence the percentage of physical/virtual memory being used?

In other words, who is correct? Plesk says I'm using 40-50% of my memory, whereas top says 85-95%.

View 6 Replies View Related

Ubuntu :: Adjusted Input Sound Volume And Maverick Lost The Plot?

May 10, 2011

I'm running Maverick on an HP dv6 laptop. I tried recording a video via VLC with the machine's 'TrueVision' webcam. The result seemed to lack audio, so I had a look in preferences > sound. The input tab had the mute button ticked, so I unticked it and tried adjusting the level (while realising I was probably just configuring the mic port and not the webcam's inbuilt mics).

Then things turned bad: pointer became sluggish, and changes I made to the level slider took ages to be reflected visually on screen. I queued up a pile of clicks on the 'close' button and went away for a while. On return, I was met with a box inviting me to stop a script with some screen-width-long incomprehensible name, which of course I did.

Now the system's in a state which sees windows missing title bars (tho' not menu bars) and (more problematically) the upper and lower bars on the desktop absent. I issued a hibernate command from the terminal in the hope that on waking the system would be 'fixed', but nothing changed. I tried alt-tabbing to access my open applications and close them gracefully but this command is ignored. I have 'zillions' of apps going with unsaved data and am not sure what to try next. I'd be happy just to be able to task switch to each open prog and exit it gracefully then restart. But my knowledge of the command line is such that your help is required =) .

View 6 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved