It depends on where the bottleneck is. Pure theory, you double your IO/s. But you still have the same seek time and latency. For small random operations, The latency and seek take as much time as the actual read or write. So there will be little to no change. For large sequential loads, it should be about twice as fast. Unfortunately, most of what the average person does on a computer is considered smaller random operations. I would say based on experience, maybe a 25% increase in speed for real world stuff tops. As other have said, that comes with double the risk of failure and data loss. However, if it is just your OS and Apps, and not any images, then that is not too risky.
If you want to see a major increase in boot and load times, I would go with a single Solid State Drive (SSD). Those have zero latency and seek times, so you get huge increases in small IO operations over mechanical disks. Yes they are expensive. But as I mentioned above, with a RAID 0 you would not want to put any real data on there. So you don't need THAT much room for just OS and Apps.
If you are looking for something to store output video files or real time audio recording or anything that is just a big huge sequential data stream, then RAID 0 makes a big difference and can match SSD with the right drives.