Feeds
질문
want to join two audio files and write /save using audiowrite
close all;clear all;clc [y1,Fs] = audioread('a.wav'); [y2,Fs] = audioread('b.wav'); y3 = [y1; y2;]; sound(y3,16000) ...
대략 6년 전 | 답변 수: 1 | 0
1
답변질문
printing full stop in next line
fid1=fopen('prompts2','r'); fid2=fopen('prompts3trialtimitsmall','w'); while ~ feof(fid1) new_line = fgetl(fid1);...
거의 8년 전 | 답변 수: 1 | 0
1
답변질문
I have opened a xyz.txt file in write mode .I want to print text in xyz.txt file (to be print data is in words/strings) I use fprintf and sprintf both but didn't work . Also I want to use regexp to convert sentences to words ,each in a new line , I
I use fileread,regexp, and sprintf inside fopen and then finally use fclose
대략 8년 전 | 답변 수: 0 | 0