Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

  • Congratulations waross on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. nschlange

    Matlab gets more and more slowly throughout program!

    Hi, can you post some code? Are you preallocating?
  2. nschlange

    Matlab error dealing with vectors

    Hi, posting your input might help as well. a=[1 2 3] b=[4 5 6] a./b a.*b is not giving me an error.
  3. nschlange

    Read an txt.file from ABAQUS

    Dear Paulis, I'm still missing the point. Is my work done or do you need further advice? If so, what is the slowest heating node in this example? all the best nschlange
  4. nschlange

    Read an txt.file from ABAQUS

    Hi pauli, I don't understand the problem. Is it reading the file or sorting the data? To read in the file try something like this: -- clear all; clc; file='abaqus.txt'; fid=fopen(file); data=textscan(fid,'%f %f %f %f','HeaderLines',3,'Delimiter',' ','MultipleDelimsAsOne',1); fclose(fid); data...
Back
Top