06-27-2010 03:45 PM
Hi:
I am new to labview and want to make a report that content of the FFT spectrum data and FFT figure. a error message as *The report generation toolkit does not support the data you are using*.I used a for loop for calculate the FFT,does this cause the problem?I really do know how to settle it.Any suggestion is welcome!Thanks in advance!!
06-27-2010
05:32 PM
- last edited on
11-07-2024
12:02 PM
by
Content Cleaner
Error code 41103 indicates unsupported data type. It appears that you are trying to use a cluster to create a waveform. The waveform data type is not a cluster. You have to explicitly create the waveform datatype using the waveform functions. Specifically, you need to use the Build Waveform function. In your case it would look something like this:

Note: I don't have the Report Generation Toolkit, so I don't have the details on the specific Express VI that you're using, so I'm not sure if it acceps a waveform datatype.
06-27-2010 07:00 PM
OH!Thank you very much!!As you say it works after changing to waveform.I show it below. I do not know if I can ask you help one more time.I really do not know how to add the waterfall to report,it seems can be translate to waveform.Even it is translated the report will also just be 2D show but not waterfall show.I wonder how I can get the picture of the waterfall,if so I can get it into report.But I do not know how I can do this,can you teach me?
06-27-2010 10:19 PM - edited 06-27-2010 10:20 PM
You do not need to use the Unbundle function - you already have the data available, so you're just performing an operation to get data you already have. Just use wires:

@yujin wrote:
.I really do not know how to add the waterfall to report,it seems can be translate to waveform.Even it is translated the report will also just be 2D show but not waterfall show.I wonder how I can get the picture of the waterfall,if so I can get it into report.But I do not know how I can do this,can you teach me?
I don't have LV 2009 running right now, so I can't give you the details, but basically what you need to do is to the get the image of the graph and add it to the report. You can use the Image to File method to save the image to file and then use the Report functions to add the image to the report. I can verify this tomorrow.
06-28-2010 10:05 AM
I don't think I was completely clear, but my point about using the waveform data type extends to those other VIs that you're using. I don't recognize those VIs, but I'd bet they're expecting a waveform data type, not a cluster of an integer, a double, and an array of doubles.
06-29-2010 01:01 AM
Hi,smercurio:
Thanks a lot for correctting the VI for me.I am so stupid! !![]()